-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
48
49
50
{
"name": "pizza",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "babel-node src/",
"dev": "nodemon --exec babel-node src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prography/5th-pizza-back.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prography/5th-pizza-back/issues"
},
"homepage": "https://github.com/prography/5th-pizza-back#readme",
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@sentry/node": "^5.9.0",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"multer": "^1.4.2",
"mysql": "^2.17.1",
"mysql2": "^2.0.0",
"sequelize": "^5.21.2",
"sequelize-cli": "^5.5.1",
"sequelize-constants": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/runtime": "^7.8.3",
"babel-jest": "^25.1.0",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "^4.0.2"
}
}