-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 908 Bytes
/
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
{
"name": "twitter-clone-api",
"version": "1.0.0",
"description": "",
"main": "./dist/server.js",
"scripts": {
"test": "tsc && mocha --require babel-register --timeout 8000",
"dev": "tsc && nodemon ./dist/server.js",
"prod": "tsc && nodemon ./dist/server.js"
},
"babel": {
"presets": [
"es2015"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.8",
"@types/jest": "^26.0.14",
"babel": "^6.23.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.1",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"nodemon": "^2.0.4",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@types/chai": "^4.2.12",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1"
}
}