-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.77 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
52
53
54
55
56
{
"name": "plantme",
"version": "1.0.0",
"description": "",
"main": "server/server.ts",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"custom-env": "^2.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.4",
"mongoose": "^5.11.15",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"typescript": "^3.9.9"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.7"
},
"scripts": {
"start": "cross-env NODE_ENV=development ts-node ./server/server.ts",
"start:production": "cross-env NODE_ENV=production ts-node ./server/server.ts",
"nodemon": "nodemon ./server/server.ts",
"lint": "eslint server --ext .ts",
"test": "cross-env NODE_ENV=development jest --forceExit --maxWorkers=1 --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruljin/CodersCamp2020.Project.NodeJS-Express-TypeScript.MyPlants.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ruljin/CodersCamp2020.Project.NodeJS-Express-TypeScript.MyPlants/issues"
},
"homepage": "https://github.com/ruljin/CodersCamp2020.Project.NodeJS-Express-TypeScript.MyPlants#readme"
}