-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 916 Bytes
/
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
{
"name": "firework-server",
"version": "1.0.0",
"main": "server.js",
"dependencies": {
"cors": "^2.8.5",
"ejs": "^2.6.2",
"express": "^4.17.1",
"jwt-simple": "^0.5.6",
"morgan": "^1.9.1",
"mysql2": "^2.2.5",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.1.6",
"@types/express": "^4.17.0",
"@types/mongoose": "^5.5.12",
"@types/node": "^12.7.1",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"typescript": "^3.7.1"
},
"scripts": {
"build": "./node_modules/.bin/gulp",
"dev": "./node_modules/.bin/gulp devBuild",
"start": "node ./dist/server.js"
},
"description": ""
}