-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "webapp_v1",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/devshelpdevs/webapp_v1.git",
"author": "biggaji <herityjohnny14@gmail.com>",
"license": "MIT",
"dependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-handlebars": "^6.0.3",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.2.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.0",
"@types/chai-http": "^4.2.0",
"@types/connect-flash": "^0.0.37",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-handlebars": "^6.0.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon index.ts",
"build": "tsc -p .",
"test": "mocha --timeout 20000 || true"
}
}