-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "paint-store",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./src/app.js",
"start:nodemon": "nodemon ./src/app.js",
"db:init": "npx sequelize-cli init",
"db:create": "npx sequelize db:create",
"db:migrate": "npx sequelize db:migrate",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahrijar/paint-store.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahrijar/paint-store/issues"
},
"homepage": "https://github.com/bahrijar/paint-store#readme",
"dependencies": {
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"moment": "^2.29.4",
"pg": "^8.7.3",
"sequelize": "^6.21.3",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sequelize-cli": "^6.4.1"
}
}