-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 4.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "d-pow.github.io",
"version": "1.0.31",
"private": true,
"homepage": "http://d-pow.github.io",
"main": "index.js",
"types": "types/index.d.ts",
"author": "D-Pow",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/D-Pow/d-pow.github.io.git"
},
"engines": {
"node": ">=16.11.0",
"npm": ">=8"
},
"config": {
"buildOutputDir": "dist",
"eslintExtensions": ".tsx,.ts,.jsx,.js,.mjs,.cjs",
"supportIe": false
},
"scripts": {
"start": "webpack serve --config ./config/webpack.config.mjs",
"start:allowCorsAccess": "cross-env ALLOW_CORS_ACCESS=true npm start --",
"mock": "cross-env MOCK=true npm start --",
"mock:allowCorsAccess": "cross-env ALLOW_CORS_ACCESS=true npm run mock --",
"test": "jest",
"lint": "eslint --ext $npm_package_config_eslintExtensions",
"lint:all": "npm run lint -- .",
"lint:fix": "npm run lint -- --fix",
"lint:fixAll": "npm run lint:all -- --fix",
"lint:verify": "npm run lint:all -- --quiet",
"typecheck": "tsc --noEmit",
"typecheck:file-list": "npm run --silent typecheck | grep -Eio '^[a-zA-Z/_@\\.-]+' | sort -u",
"verify": "npm run verify:noTests",
"verify:noTests": "set -m; declare exitCode=0; ( npm run lint:verify ) & ( npm run typecheck ) & for bgPid in $(jobs -p); do wait $bgPid; (( exitCode += $? )); done; exit $exitCode",
"verify:tests": "set -m; declare exitCode=0; ( npm run lint:verify ) & ( npm run typecheck ) & ( npm run test ) & for bgPid in $(jobs -p); do wait $bgPid; (( exitCode += $? )); done; exit $exitCode",
"clean": "npx shx rm -rf $npm_package_config_buildOutputDir coverage",
"clean:node_modules": "npm run clean; mv node_modules znode_modules; ( rm -rf znode_modules & );",
"build": "cross-env NODE_ENV=production webpack --mode production --config ./config/webpack.config.mjs",
"prebuild": "npm run clean --",
"pretsBuild": "npm run clean --",
"tsBuild": "tsc",
"createComponent": "node scripts/createComponent.js --",
"deploy": "gh-pages -d $npm_package_config_buildOutputDir",
"predeploy": "npm run build --"
},
"jest": {
"preset": "./config/jest/jest.config.mjs"
},
"keywords": [
"Devon Powell",
"web development",
"profile",
"typescript",
"website"
],
"overrides": {
"react": "$react",
"react-dom": "$react-dom",
"react-router": "$react-router",
"react-router-dom": "$react-router-dom"
},
"dependencies": {
"bootstrap": "^4.4.1",
"prop-types": "^15.7.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-router": "^6.3.0",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-proposal-decorators": "^7.17.8",
"@babel/plugin-syntax-import-assertions": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.18.6",
"@svgr/webpack": "^6.2.1",
"@testing-library/react": "^13.4.0",
"@types/babel__core": "^7.1.19",
"@types/jest": "^27.0.2",
"@types/mkcert": "^1.2.0",
"@types/node": "^16.11.4",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/react-reconciler": "^0.26.6",
"@types/svgo": "^2.6.3",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"babel-loader": "^8.2.4",
"babel-plugin-module-resolver": "^5.0.0",
"copy-webpack-plugin": "^6.4.1",
"core-js": "^3.21.1",
"cross-env": "^5.2.1",
"css-loader": "^5.2.5",
"css-minimizer-webpack-plugin": "^3.0.1",
"dotenv": "^7.0.0",
"dotenv-expand": "^10.0.0",
"eslint": "^8.12.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-alias": "^1.2.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^27.3.1",
"jest-css-modules-transform": "^4.3.0",
"mini-css-extract-plugin": "^2.7.5",
"mkcert": "^1.5.0",
"mock-requests": "^1.4.3",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"proxy-polyfill": "^0.3.2",
"reflect-metadata": "^0.1.13",
"sass": "^1.43.3",
"sass-loader": "^13.2.1",
"shelljs": "^0.8.5",
"terser-webpack-plugin": "^4.2.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.4",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"yargs-parser": "^20.2.9"
}
}