-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.29 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
{
"name": "advanced-react-setup",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf ./build",
"lint": "eslint --ignore-path .gitignore -- . ",
"pretest": "npm run test:clean && npm run lint",
"test:clean": "rimraf ./coverage",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"build": "npm run build:clean && npm run build:base",
"build:test": "npm run build:clean && npm run build:base -- --env.test=true",
"build:clean": "npm run test:clean && rimraf ./build",
"build:base": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p --progress",
"build:analyze": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p --progress -- --analyze",
"analyze": "npm run build:clean && npm run build:analyze",
"start": "cross-env NODE_ENV=development node server",
"start:prod": "cross-env NODE_ENV=production node server",
"start:production": "npm run build && npm run start:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uraharadono/AdvancedReactSetup.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"browserslist": [
">1%",
"last 2 versions",
"Firefox ESR",
"not ie < 11"
],
"engines": {
"npm": ">=3",
"node": ">=5"
},
"bugs": {
"url": "https://github.com/Uraharadono/ArticleMaster.Desktop/issues"
},
"homepage": "https://github.com/Uraharadono/ArticleMaster.Desktop#readme",
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.2",
"compression": "^1.7.3",
"cssnano": "^4.1.8",
"date-fns": "^1.30.1",
"express": "^4.16.4",
"ip": "^1.1.5",
"minimist": "^1.2.0",
"moment": "^2.24.0",
"ngrok": "^3.1.0",
"qs": "^6.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.5",
"react-router-dom": "^4.3.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-react-inline-elements": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"circular-dependency-plugin": "^5.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"progress-bar-webpack-plugin": "^1.12.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.2",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.1",
"webpack-hot-middleware": "^2.24.3"
}
}