-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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": "CU-News",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js",
"build": "webpack --watch --progress --colors --display-error-details",
"dev": "webpack-dev-server --hot",
"debug": "node --inspect server.js",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix .",
"postinstall": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/CU-News/CU-News"
},
"keywords": [],
"author": "",
"license": "MIT",
"homepage": "https://github.com/CU-News/CU-News#readme",
"dependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"flux": "^3.1.0",
"mongoose": "^4.6.8",
"nlcst-to-string": "^2.0.0",
"react": "^15.4.0",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.4.0",
"react-google-charts": "^1.2.1",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"retext": "^4.0.0",
"retext-keywords": "^3.0.0",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"mocha": "^3.2.0"
}
}