-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.33 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.33 KB
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
{
"name": "mp_test",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run watch\" ",
"watch": "NODE_ENV=development ./node_modules/webpack/bin/webpack.js --config ./build/webpack.config.js --progress --watch",
"server": "NODE_ENV=development ./node_modules/nodemon/bin/nodemon.js ./server/index.js -i ./dist",
"build:dev": "NODE_ENV=development ./node_modules/webpack/bin/webpack.js --config ./build/webpack.config.js",
"build:nohash": "NODE_NO_HASH=true NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config ./build/webpack.config.js",
"build:cdn": "NODE_UPLOAD_CDN=true NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config ./build/webpack.config.js",
"build": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config ./build/webpack.config.js",
"prettier": "prettier -c --write '**/*'",
"pretty-quick": "pretty-quick",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "zmj97",
"license": "ISC",
"cssnano": {
"preset": [
"default",
{
"mergeLonghand": false
}
]
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^7.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^5.1.0",
"css-loader": "^0.28.7",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-react": "^7.19.0",
"eslint-tinker": "^0.5.0",
"express": "^4.17.1",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^1.1.11",
"glob": "^7.1.6",
"html-loader": "^1.1.0",
"html-webpack-plugin-for-multihtml": "^2.30.2",
"image-webpack-loader": "^6.0.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.3",
"optimize-css-assets-webpack-plugin": "^3.2.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"ts-loader": "^3.5.0",
"typescript": "^3.8.3",
"url-loader": "^4.1.0",
"vconsole-webpack-plugin": "^1.5.1",
"webpack": "^3.12.0"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}