-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 953 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 953 Bytes
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
{
"name": "primeserver",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"test": "tsc && mocha tests/api.test.js",
"brun": "node ./dist/bundle.js",
"dev": "nodemon",
"build": "webpack",
"start": "tsc && node ./dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-node": "^10.0.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.13",
"passport": "^0.4.1",
"ts-loader": "^9.2.2",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
}
}