-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
57 lines (57 loc) · 1.5 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": "hackcwru",
"version": "0.0.0",
"description": "Case Western Reserve's hackathon website.",
"main": "index.js",
"scripts": {
"build": "babel src/ -d lib/ && NODE_ENV=production webpack --config webpack/webpack.config.js",
"build:dev": "babel src/ -d lib/ && NODE_ENV=development webpack --config webpack/webpack.config.js",
"start": "pm2 start ecosystem.config.js --env production",
"start:dev": "NODE_ENV=development node lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackCWRU/HackCWRU-Website.git"
},
"keywords": [
"hackathon",
"case western"
],
"author": {
"name": "Jack Mousseau",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HackCWRU/HackCWRU-Website/issues"
},
"homepage": "https://github.com/HackCWRU/HackCWRU-Website#readme",
"babel": {
"presets": [
"env",
"react"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"node-sass": "^4.5.3",
"pm2": "^2.8.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"express": "^4.16.1",
"hackry": "^1.0.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scroll": "^1.6.4"
}
}