forked from jonas-wedemeyer/envolution-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.73 KB
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
{
"name": "envolution-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint",
"dev": "nodemon index.js",
"seed:all": "npx sequelize db:seed:all --config ./db/config.js --seeders-path ./db/seeders",
"seed:undo": "npx sequelize db:seed:undo:all --config ./db/config.js --seeders-path ./db/seeders",
"migrate": "npx sequelize db:migrate --config ./db/config.js --migrations-path ./db/migrations",
"migrate:undo": "npx sequelize db:migrate:undo --config ./db/config.js --migrations-path ./db/migrations",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonas-wedemeyer/envolution-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jonas-wedemeyer/envolution-server/issues"
},
"homepage": "https://github.com/jonas-wedemeyer/envolution-server#readme",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.3",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"atob": "^2.1.2",
"bcrypt": "^3.0.6",
"cloudinary": "^1.14.0",
"dotenv": "^8.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-jwt": "^3.6.0",
"koa-multer": "^1.0.2",
"koa-router": "^7.4.0",
"pg": "^7.12.1",
"sequelize": "^5.14.0",
"sequelize-cli": "^5.5.0"
}
}