-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.81 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
{
"name": "uvic-software-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=dev webpack-dev-server --hot --inline --progress",
"dash": "NODE_ENV=dev webpack-dashboard -- webpack-dev-server --hot --inline --progress",
"build": "NODE_ENV=production webpack -p",
"postbuild": "npm run copy",
"copy": "cp -r public/* build",
"clean": "rimraf build",
"deploy": "npm run build; surge build/ https://uvic-sdaml.surge.sh"
},
"author": [
"Jake Runzer <[email protected]> (https://jakerunzer.xyz)"
],
"license": "ISC",
"dependencies": {
"cors": "^2.7.1",
"es6-promise": "^3.1.2",
"express": "^4.13.4",
"moment": "^2.14.1",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-ga": "^1.4.1",
"react-html5video": "^1.2.12",
"react-router": "^2.0.0"
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-react": "^4.3.0",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"prettier": "^0.22.0",
"rimraf": "^2.5.2",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dashboard": "^0.1.6",
"webpack-dev-server": "^1.14.1",
"webpack-notifier": "^1.3.0"
}
}