-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
{
"name": "city_bugdet_helper",
"version": "1.0.0",
"description": "Utility app for budgeting",
"main": "app.js",
"scripts": {
"test": "test",
"start": "gulp prod && node app.js",
"debug": "node --debug app.js",
"lint": "eslint './src/client/**/*.js' || exit 0",
"bootstrap": "node app.js bootstrap"
},
"engines": {
"node": "6.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikovic/cityBudgetHelper.git"
},
"keywords": [
"budget",
"procurement"
],
"author": "Ivan Kovic",
"license": "ISC",
"bugs": {
"url": "https://github.com/ikovic/cityBudgetHelper/issues"
},
"homepage": "https://github.com/ikovic/cityBudgetHelper#readme",
"dependencies": {
"bcryptjs": "^2.3.0",
"body-parser": "^1.15.2",
"dialog-polyfill": "^0.4.4",
"express": "^4.14.0",
"express-validator": "^2.21.0",
"fetch": "^1.1.0",
"helmet": "^3.1.0",
"i18next": "^4.2.0",
"jwt-simple": "^0.5.0",
"mysql": "^2.11.1",
"mysql2": "^1.0.0-rc.12",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"query-string": "^4.2.3",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-mdl": "^1.7.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"sequelize": "^3.24.2",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"del": "^2.2.2",
"eslint": "^3.8.0",
"eslint-plugin-react": "^6.4.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-sass": "^2.3.2",
"vinyl-source-stream": "^1.1.0"
}
}