-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 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
58
59
{
"name": "zakupnik3",
"description": "Expense logger",
"version": "2.1.1",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/tborychowski/zakupnik3.git"
},
"scripts": {
"test": "jest --runInBand",
"start:client": "gulp watch",
"start:server": "gulp server",
"dist": "gulp --prod",
"start": "run-p start:client start:server",
"startprod": "gulp default server --prod"
},
"dependencies": {
"body-parser": "^1.19.0",
"chart.js": "^2.8.0",
"connect-livereload": "^0.6.1",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"sequelize": "^4.42.0",
"sqlite3": "^4.1.0",
"string-similarity": "^3.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"babel-loader": "^8.0.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-env": "^1.7.0",
"chalk": "^2.4.2",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-concat": "^2.6.1",
"gulp-env": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-livereload": "^4.0.1",
"gulp-nodemon": "^2.4.2",
"gulp-sourcemaps": "^2.6.5",
"gulp-stylus": "^2.7.0",
"jest": "^24.9.0",
"minimist": "^1.2.0",
"npm-run-all": "^4.1.5",
"supertest": "^4.0.2",
"svelte": "^2.16.0",
"svelte-loader": "2.12.0",
"through2": "^3.0.1",
"webpack": "^4.39.2",
"webpack-stream": "^5.2.1"
}
}