-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
53 lines (53 loc) · 1.56 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
{
"name": "node-red-flows",
"version": "0.2.0",
"scripts": {
"test": "mocha test/**/*_spec.js --exit",
"start": "node app.js",
"nodemon": "nodemon --ext js,html --inspect=0.0.0.0:5858 --ignore data/ ./app.js",
"dev": "npm run nodemon",
"docker": "docker-compose -f docker-compose.yml up --build"
},
"dependencies": {
"acorn": "8.12.1",
"acorn-walk": "8.3.4",
"aws-sdk": "2.1691.0",
"body-parser": "1.20.3",
"dompurify": "3.1.7",
"connect-mongo": "5.1.0",
"cookie-parser": "1.4.7",
"csurf": "1.11.0",
"express": "4.21.1",
"express-rate-limit": "7.4.1",
"express-session": "1.18.1",
"fs-extra": "11.2.0",
"jsdom": "25.0.1",
"marked": "14.1.2",
"mastodon": "1.2.2",
"mongodb": "6.9.0",
"mustache": "4.2.0",
"node-red-dev": "^0.1.6",
"oauth": "0.10.0",
"request": "2.88.2",
"serve-static": "1.16.2",
"tar": "7.4.3",
"uuid": "10.0.0",
"validate-npm-package-name": "5.0.0"
},
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "8.2.1",
"nodemon": "2.0.20",
"should": "13.2.3",
"sinon": "9.2.1",
"vanilla-cookieconsent": "^2.8.8"
},
"engines": {
"node": "18"
}
}