-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.68 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": "letsclimbstuff",
"version": "1.0.0",
"description": "Small project to practice React.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently --kill-others \"webpack-dev-server --config webpack.dev.js --host 0.0.0.0 \" \"nodemon server.js\"",
"build": "webpack --config webpack.prod.js",
"serve": "webpack-dev-server --config webpack.dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/narthur157/letsclimbstuff.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/narthur157/letsclimbstuff/issues"
},
"homepage": "https://github.com/narthur157/letsclimbstuff#readme",
"dependencies": {
"babel-loader": "^7.1.2",
"body-parser": "^1.18.1",
"cors": "^2.8.4",
"css-loader": "^0.28.7",
"express": "^4.15.4",
"express-session": "^1.15.5",
"express-validator": "^4.2.1",
"file-loader": "^0.11.2",
"haversine": "^1.0.2",
"https": "^1.0.0",
"material-ui": "^1.0.0-beta.11",
"moment": "^2.18.1",
"raw-loader": "^0.5.1",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.2.2",
"request": "^2.83.0",
"style-loader": "^0.18.2",
"typeface-roboto": "0.0.35",
"uglifyjs-webpack-plugin": "^1.0.0-beta.1",
"url-loader": "^0.5.9",
"validator": "^9.0.0",
"webpack-merge": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.0",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.12.1",
"tachyons": "^4.8.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.8.2"
}
}