-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.39 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.39 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
58
59
60
{
"name": "pinpoint",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "forever ./bin/www",
"dev": "nodemon ./bin/www",
"test": "cross-env NODE_ENV=test ADMIN_PASSWORD=admintest JWT_SECRET=jwttest jest --detectOpenHandles"
},
"dependencies": {
"aedes": "^0.46.1",
"async": "^3.2.3",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^5.1.2",
"cookie-parser": "~1.4.4",
"cron": "^1.8.2",
"cross-spawn": "^7.0.3",
"crypto-random-string": "^3.3.1",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"ms": "^2.1.3",
"multer": "^1.4.3",
"nedb-models": "^4.0.1",
"nedb-promises": "^6.0.3",
"nunjucks": "^3.2.3",
"sharp": "^0.29.1",
"superagent": "^6.1.0",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^25.2.1",
"jest": "^27.2.5",
"supertest": "^6.1.6"
},
"license": "mit",
"nodemonConfig": {
"ext": "js,json,html",
"ignore": [
"data/*",
".git"
],
"delay": 2500
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"verbose": true,
"testTimeout": 30000
}
}