-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.17 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
72
73
{
"name": "my-university",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/IIC2513-2018-1/my-university.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.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"koa-webpack": "^1.0.0",
"nodemon": "^1.17.2"
},
"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.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"bcrypt": "^2.0.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.11",
"csv-parse": "^2.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"faker": "^4.1.0",
"file-loader": "^1.1.11",
"jsonapi-serializer": "^3.5.6",
"jsonwebtoken": "^8.2.1",
"koa": "^2.5.0",
"koa-body": "^2.5.0",
"koa-ejs": "^4.1.1",
"koa-flash-message": "^0.1.6",
"koa-jwt": "^3.3.2",
"koa-logger": "^3.2.0",
"koa-override-method": "^1.0.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.1",
"koa-static": "^4.0.2",
"node-sass": "^4.8.3",
"nodemailer": "^4.6.3",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"pkgcloud": "^1.5.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"sass-loader": "^6.0.7",
"sequelize": "^4.37.4",
"sequelize-cli": "https://github.com/IIC2513-2018-1/sequelize-cli#iic2513-version",
"style-loader": "^0.20.3",
"webpack": "^3.6.0"
},
"engines": {
"node": "^8.9.0",
"yarn": "^1.5.0"
}
}