-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.57 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.57 KB
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
57
{
"name": "testProject",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && tsc",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "npm run build&SET NODE_ENV=test&mocha --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexTurdean/testProject.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AlexTurdean/testProject/issues"
},
"homepage": "https://github.com/AlexTurdean/testProject#readme",
"dependencies": {
"@types/body-parser": "^1.19.1",
"@types/chai-http": "^4.2.0",
"@types/node": "^16.4.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jwt-simple": "^0.5.6",
"mocha": "^9.0.3",
"mongoose": "^5.13.3",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/jwt-simple": "^0.5.33",
"@types/mongoose": "^5.11.97",
"@types/supertest": "^2.0.11",
"concurrently": "^6.2.0",
"jest": "^27.0.6",
"mongodb-memory-server": "^7.3.4",
"nodemon": "^2.0.12",
"supertest": "^6.1.4",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0"
}
}