-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.16 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.16 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
{
"name": "react_redux_template",
"version": "1.0.0",
"description": "",
"main": "webpack.common.js",
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.js"
]
},
"dependencies": {
"axios": "^0.20.0",
"format-number": "^3.0.0",
"preact": "^10.5.2",
"react-modal": "^3.12.1",
"react-numeric-input": "^2.2.3",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-form": "^8.3.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-loader": "^8.1.0",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"big-integer": "^1.6.48",
"css-loader": "^4.3.0",
"install": "^0.13.0",
"jest": "^26.6.3",
"npm": "^6.14.9",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"scripts": {
"start": "./node_modules/webpack/bin/webpack.js --config webpack.dev.js --watch & BROWSER=chrome ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --progress --colors --config webpack.dev.js --open 'google chrome'",
"start.win": "node ./node_modules/webpack/bin/webpack.js --config webpack.dev.js --watch | node ./node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --progress --colors --open --config webpack.dev.js",
"build.win": "set NODE_ENV=production && node ./node_modules/webpack/bin/webpack.js -p --config ./webpack.prod.js",
"build": "NODE_ENV=production webpack -p --config ./webpack.prod.js",
"test": "jest --watchAll --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fallout0128/react_redux_template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fallout0128/react_redux_template/issues"
},
"homepage": "https://github.com/fallout0128/react_redux_template#readme"
}