-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "express-server",
"version": "1.0.0",
"description": "Backend server using express.",
"main": "server.js",
"scripts": {
"clean": "rm -r -f .\\node_modules",
"start:dev": "nodemon --exec babel-node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chumlee132/node-angular-template.git"
},
"keywords": [
"express",
"nodejs",
"angular",
"template"
],
"author": "Gopi",
"license": "ISC",
"bugs": {
"url": "https://github.com/chumlee132/node-angular-template/issues"
},
"homepage": "https://github.com/chumlee132/node-angular-template#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4"
}
}