-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.27 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.27 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
{
"name": "react-redux-example",
"version": "1.0.0",
"description": "react-redux and immutable",
"main": "index.js",
"scripts": {
"start": "parcel src/index.html --port 3000",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "parcel build src/index.html --out-dir dist",
"build:no-cache": "parcel build src/index.html --no-cache --out-dir dist",
"build:no-minify": "parcel build src/index.html --no-minify --out-dir dist"
},
"license": "MIT",
"dependencies": {
"autoprefixer": "^6.5.1",
"immutable": "^4.0.0-rc.12",
"parcel": "^1.12.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-actions": "^2.0.3",
"redux-immutable": "^4.0.0",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-async-to-generator": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"eslint": "5.3.0",
"parcel-bundler": "^1.12.3",
"prettier": "1.18.2"
}
}