-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.11 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.11 KB
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": "beercheer_server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha api/preference/preference.spec.js -w",
"start": "nodemon bin/server.js",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beerCheer/beerCheer_server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/beerCheer/beerCheer_server/issues"
},
"homepage": "https://github.com/beerCheer/beerCheer_server#readme",
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"sequelize-cli": "^6.4.1",
"should": "^13.2.3",
"supertest": "^6.2.2"
},
"config": {
"commitizen": {
"path": "cz-emoji-conventional"
}
},
"dependencies": {
"axios": "^0.26.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.3.3",
"request": "^2.88.2",
"sequelize": "^6.19.0"
}
}