-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "sismochat-api",
"version": "0.1.0",
"description": "A simple chat app, focused on Security, the target is childood. API for server side",
"main": "server.js",
"scripts": {
"start-dev": "nodemon server.js",
"start": "node server.js",
"migrate": "npx sequelize-cli db:migrate",
"migrate:reset": "npx sequelize-cli db:migrate:undo:all && npm run migrate",
"test": "cross-env NODE_ENV=test jest --testTimeout=10000 --detectOpenHandles",
"pretest": "cross-env NODE_ENV=test npm run migrate:reset",
"swagger-autogen": "node swagger.js"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"and": "^0.0.3",
"cross-env": "^7.0.3",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"sequelize": "^6.28.0",
"sequelize-cli": "^6.6.0",
"sqlite3": "^5.1.4",
"swagger-autogen": "^2.23.1",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0"
},
"engines": {
"node": "^16.x"
},
"repository": {
"url": "https://github.com/ml-net/sismochat_api"
},
"license": "None",
"keywords": [],
"devDependencies": {
"jest": "^29.5.0",
"supertest": "^6.3.3"
}
}