-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "tom-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/.bin/mocha __test__ --exit --timeout 2000 --exit",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codestates/TOM-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codestates/TOM-server/issues"
},
"homepage": "https://github.com/codestates/TOM-server#readme",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"mysql2": "^2.1.0",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"sequelize": "^6.3.3",
"sequelize-cli": "^6.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}