-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.52 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
{
"name": "todo-node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"generate": "sequelize migration:generate --name $1",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm run migrate",
"dev": "nodemon index.js",
"prestart": "npm run migrate",
"start": "node index.js",
"updateLock": "sed -i '' -e 's/http:\\/\\//https:\\/\\//g' package-lock.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/majin-land/todo-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/majin-land/todo-node/issues"
},
"homepage": "https://github.com/majin-land/todo-node#readme",
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-useragent": "^1.0.13",
"frameguard": "^3.1.0",
"moment": "^2.26.0",
"nocache": "^2.1.0",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"request-ip": "^2.1.3",
"require-dir": "^1.2.0",
"sequelize": "^5.22.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "18.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-json": "^1.4.0",
"nodemon": "^2.0.4",
"sequelize-cli": "^5.5.1"
}
}