-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 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
59
{
"name": "cfgram",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"jest": {
"globals": {
"__API_URL__": "http://localhost:3000"
}
},
"scripts": {
"watch": "webpack-dev-server --inline --hot",
"test": "jest",
"test-watch": "jest --watchAll",
"start": "node server.js",
"heroku-postbuild": "webpack -p --progress"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.5",
"node-sass": "^4.8.3",
"raw-loader": "^0.5.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.7",
"superagent": "^3.8.2",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"validator": "^9.4.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
},
"devDependencies": {
"babel-jest": "^22.4.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.4.3"
}
}