-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "redux-saga-beginner-tutorial",
"homepage": "https://github.io/redux-saga-beginner-tutorial",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-autobind-class-methods": "5.0.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-1": "6.24.1",
"react-scripts": "1.0.17",
"typescript": "2.7.2"
},
"dependencies": {
"@types/lodash": "4.14.104",
"@types/node": "9.4.7",
"@types/react": "16.0.40",
"@types/react-dom": "16.0.4",
"@types/react-redux": "5.0.15",
"@types/react-router": "4.0.22",
"@types/redux-devtools-extension": "2.13.2",
"@types/rx": "4.1.1",
"@types/webpack-env": "1.13.5",
"axios": "0.17.1",
"lodash": "4.17.5",
"parcel-bundler": "1.10.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
"react-router": "4.2.0",
"redux": "3.7.2",
"redux-devtools-extension": "2.13.2",
"redux-observable": "0.18.0",
"redux-saga": "0.16.0",
"rxjs": "5.5.6",
"tslib": "1.9.0",
"typesafe-actions": "1.1.2",
"utility-types": "1.1.0"
},
"scripts": {
"start": "npm run start-tsc-watcher && npm run copy-to-tsc_dist && sleep 3 && parcel public/index.html -p 3010 --open",
"start-tsc-watcher": "tsc -w &",
"build": "tsc && parcel build ./public/index.html --public-url ./",
"copy-to-tsc_dist": "mkdir -p tsc_dist && cp -r src/*.css tsc_dist && cp -r src/*.svg tsc_dist"
}
}