-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "template",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/IIC2513-2017-2/template.git",
"license": "MIT",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint ./src index.js",
"lint-fix": "eslint --fix ./src index.js",
"build-assets": "yarn run clean-assets && NODE_ENV=production webpack -p",
"clean-assets": "rm -f build/assets/*",
"heroku-postbuild": "yarn run build-assets && sequelize db:migrate"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-import": "^2.7.0",
"koa-webpack": "^1.0.0",
"nodemon": "^1.11.0"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"koa-ejs": "^4.1.0",
"koa-flash-message": "^0.1.6",
"koa-logger": "^3.0.1",
"koa-override-method": "^1.0.0",
"koa-router": "^7.2.1",
"koa-session": "^5.5.0",
"koa-static": "^4.0.1",
"node-sass": "^4.5.3",
"nodemailer": "^4.1.1",
"pg": "^7.1.2",
"pg-hstore": "^2.3.2",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-hot-loader": "^3.1.1",
"sass-loader": "^6.0.6",
"sequelize": "^4.6.0",
"sequelize-cli": "https://github.com/IIC2513-2017-2/sequelize-cli#iic2513-version",
"style-loader": "^0.18.2",
"webpack": "^3.6.0"
},
"engines": {
"node": "^8.5.0",
"yarn": "^1.0.2"
}
}