generated from UnBArqDsw/RepositorioTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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": "stock-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --check ./src",
"format:fix": "prettier --write ./src",
"lint": "eslint --ext .js,.ts,.tsx src/",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "sequelize db:migrate && nodemon --exec sucrase-node src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/sequelize": "^4.28.9",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"pg": "^8.4.0",
"pg-hstore": "^2.3.3",
"redis": "^3.0.2",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"socket.io": "^3.0.1"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.13.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"sucrase": "^3.16.0"
}
}