-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "video-player",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/jest": "^16.0.4",
"@types/node": "^7.0.4",
"@types/react": "^15.0.4",
"@types/react-dom": "^0.14.21",
"@types/react-redux": "^4.4.36",
"@types/react-router": "^3.0.0",
"@types/react-router-redux": "^4.0.39",
"@types/redux": "^3.6.0",
"@types/redux-immutable-state-invariant": "^1.2.30",
"@types/whatwg-fetch": "^0.0.33",
"@types/redux-form":"^6.3.2",
"concurrently": "^3.1.0",
"node-sass": "^4.4.0",
"react-scripts-ts": "1.0.6",
"redux-immutable-state-invariant": "^1.2.4",
"typescript": "^2.1.5",
"redux-logger": "^2.8.1"
},
"dependencies": {
"body-parser": "^1.15.1",
"bootstrap-sass": "^3.3.7",
"express": "^4.13.4",
"md5": "^2.2.1",
"mongoose": "^4.4.20",
"morgan": "^1.7.0",
"q": "^1.4.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router":"~3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-form": "^6.5.0",
"redux-localstorage": "^0.4.1",
"redux-logger": "^2.8.0",
"redux-observable": "^0.13.0",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.2",
"rxjs": "^5.1.0",
"cors": "^2.8.1"
},
"scripts": {
"start:client": "react-scripts-ts start",
"build": "npm run build-css && react-scripts-ts build",
"build-css": "node-sass src/app.scss -o src/",
"watch-css": "node-sass -w src/app.scss -o src/",
"test": "react-scripts-ts test --env=jsdom",
"eject": "react-scripts-ts eject",
"start": "concurrently \"npm run server:run\" \"npm run start:client \" \"npm run watch-css\" ",
"server:run": "node index.js"
}
}