-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
57
58
{
"name": "javascript-samples",
"version": "1.0.0",
"description": "Consists of javascript samples, basic to advanced concepts",
"main": "",
"type": "module",
"scripts": {
"start": "func() { nodemon -r esm $1; }; func",
"test": "jest",
"test:mocha": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kpunith8/javascript-samples.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/kpunith8/javascript-samples/issues"
},
"homepage": "https://github.com/kpunith8/javascript-samples#readme",
"dependencies": {
"async": "^3.2.4",
"axios": "^1.4.0",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"esm": "^3.2.25",
"express": "^4.18.2",
"express-flash": "0.0.2",
"express-session": "^1.17.3",
"immutable": "^5.0.3",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-fetch": "^3.3.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"ramda": "^0.29.0",
"response-time": "^2.3.2"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/register": "^7.22.5",
"babel-jest": "^29.5.0",
"chai": "^4.3.7",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"sinon": "^15.2.0",
"sinon-chai": "^3.7.0"
}
}