forked from TigerAppsOrg/easyPCE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "easypce",
"version": "0.1.0",
"description": "A better course evaluation tool.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack/production.config.js",
"build-local": "webpack --config webpack/local.config.js --progress --colors",
"clean": "rm -rf dist",
"lint": "eslint static/src && sass-lint",
"postinstall": "npm run build",
"watch": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casey-chow/easyPCE.git"
},
"author": "Casey Chow '19 and Evan Wildenhain '19",
"license": "MIT",
"bugs": {
"url": "https://github.com/casey-chow/easyPCE/issues"
},
"homepage": "https://github.com/casey-chow/easyPCE#readme",
"dependencies": {
"axios": "^0.15.3",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"bootstrap": "^3.3.7",
"bootstrap-sass": "^3.3.7",
"css-loader": "^0.26.1",
"file-loader": "^0.10.0",
"history": "^4.5.1",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"node-sass": "^4.5.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"redux": "^3.6.0",
"redux-logger": "^2.8.0",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^4.1.1",
"sass-resources-loader": "^1.2.0-beta.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-bundle-tracker": "^0.2.0",
"webpack-dev-server": "^2.1.0-beta.0"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"eslint": "^3.14.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"express": "^4.14.1",
"react-hot-loader": "^1.3.1",
"webpack-dev-middleware": "^1.9.0",
"webpack-dev-server": "^1.16.3",
"webpack-hot-middleware": "^2.16.1"
}
}