-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
56 lines (56 loc) · 1.76 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
{
"name": "todo-redux-saga",
"version": "0.0.0",
"description": "Todo app with React, Redux, Redux-Saga, and Firebase",
"homepage": "https://todo-redux-saga.firebaseapp.com",
"repository": {
"type": "git",
"url": "git+https://github.com/r-park/todo-redux-saga.git"
},
"author": {
"name": "Richard Park",
"email": "objectiv@gmail.com"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=8.1.4"
},
"scripts": {
"eject": "react-scripts eject",
"build": "run-s build.css build.js",
"build.css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"build.js": "cross-env NODE_PATH=. react-scripts build",
"start": "run-p start.css start.js",
"start.css": "npm run build.css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start.js": "cross-env NODE_PATH=. react-scripts start",
"test": "cross-env NODE_PATH=. react-scripts test --env=jsdom",
"test.ci": "cross-env CI=true NODE_PATH=. react-scripts test --env=jsdom"
},
"dependencies": {
"classnames": "^2.2.5",
"firebase": "^4.1.3",
"history": "^4.6.3",
"immutable": "^3.8.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^5.0.0-alpha.6",
"react-scripts": "1.0.10",
"redux": "^3.7.1",
"redux-saga": "^0.15.4",
"reselect": "^3.0.1"
},
"devDependencies": {
"cross-env": "^5.0.1",
"enzyme": "^2.9.1",
"firebase-tools": "^3.9.1",
"minx": "r-park/minx.git",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.0.2",
"react-test-renderer": "^15.6.1"
}
}