-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
51
{
"name": "blog-list",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"clean": "tsc --build --clean",
"build": "rm -rf build/ && tsc -p .",
"dev": "nodemon src/index.ts",
"start": "node build/index.js",
"test": "NODE_ENV=test node_modules/.bin/jest tests --runInBand"
},
"author": "anhtumai",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/jsonwebtoken": "^8.5.4",
"@types/lodash": "^4.14.171",
"@types/mongoose": "^5.11.97",
"@types/mongoose-unique-validator": "^1.0.5",
"@types/node": "^15.14.2",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-jest": "^27.0.6",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mongoose": "^5.13.2",
"mongoose-unique-validator": "^2.0.3",
"dotenv": "^10.0.0"
}
}