-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"name": "kollectiv",
"version": "1.0.0",
"engines": {
"node": "7.2.0"
},
"description": "Music/event/lifestyle blog and sound listening platform.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist && rm -rf node_modules",
"heroku-prebuild": "bash ./scripts/deployment_react.sh",
"heroku-postbuild": "bash ./scripts/deployment_cleanup.sh",
"start": "node server.js",
"rebuild": "webpack -d --progress --colors",
"watch": "webpack -d --progress --watch"
},
"dependencies": {
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"jsonwebtoken": "^7.1.9",
"morgan": "^1.7.0",
"path": "^0.12.7",
"pg-promise": "^5.2.7"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-strict-mode": "^6.11.3",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"html-webpack-template": "^5.0.0",
"postcss-loader": "^1.1.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-router": "^2.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tongsalex/thecollektive.git"
},
"author": "Alexander Tong",
"license": "ISC",
"bugs": {
"url": "https://github.com/tongsalex/thecollektive/issues"
},
"homepage": "https://github.com/tongsalex/thecollektive#readme"
}