-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "node-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "NODE_ENV=development JWT_SECRET=iron_man node_modules/.bin/nodemon --delay 5 dist/index",
"build": "npm run gulp && npm run dev",
"gulp": "node_modules/.bin/gulp",
"start": "micro"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "2.4.1",
"@types/bluebird": "3.5.21",
"@types/express": "4.0.37",
"@types/express-graphql": "0.0.34",
"@types/graphql": "0.11.5",
"@types/jsonwebtoken": "7.2.3",
"@types/lodash": "4.14.78",
"@types/node": "8.0.34",
"@types/sequelize": "4.0.76",
"@types/validator": "10.11.3",
"gulp": "3.9.1",
"gulp-clean": "0.3.2",
"gulp-typescript": "3.2.2",
"husky": "^4.2.1",
"nodemon": "1.12.0",
"typescript": "2.5.3"
},
"dependencies": {
"bcryptjs": "2.4.3",
"express": "4.16.2",
"express-graphql": "0.6.11",
"graphql": "0.11.7",
"graphql-tools": "2.3.0",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"mysql2": "1.4.2",
"sequelize": "4.13.10",
"micro": "latest"
}
}