-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
executable file
·58 lines (58 loc) · 1.51 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
{
"name": "UpUpUp",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"postinstall": "npm install typings",
"build:webpack": "NODE_ENV=production webpack --config config/webpack.prod.js",
"build": "npm run clean && npm run build:webpack",
"clean": "",
"start": "node dev_server.js",
"test": "jest"
},
"devDependencies": {
"css-loader": "^0.25.0",
"express": "^4.13.4",
"file-loader": "^0.9.0",
"jest": "^16.0.2",
"jest-cli": "^16.0.2",
"react-addons-test-utils": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-devtools": "^3.3.1",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"ts-loader": "^0.9.5",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "^2.0.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.4"
},
"dependencies": {
"@types/react": "^0.14.43",
"@types/react-redux": "^4.4.32",
"@types/redux-thunk": "^2.1.31",
"bootstrap": "^3.3.7",
"css-loader": "^0.25.0",
"file-loader": "^0.9.0",
"node-sass": "^3.11.2",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"redux-ts": "^2.3.1",
"resolve-url-loader": "^1.6.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"tslint": "^3.15.1",
"url-loader": "^0.5.7"
},
"jest": {
"cache": "--no-cache"
}
}