forked from node-red/flow-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 999 Bytes
/
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
{
"name": "node-red-flows",
"version": "0.1.0",
"scripts": {
"test": "mocha test/**/*_spec.js --exit",
"start": "node app.js",
"nodemon": "nodemon --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": "5.2.1",
"body-parser": "1.18.2",
"connect-mongo": "2.0.0",
"cookie-parser": "1.4.3",
"csurf": "1.9.0",
"express-session": "1.15.6",
"express": "4.x",
"fs-extra": "4.0.2",
"marked": "*",
"mongojs": "2.4.1",
"mustache": "*",
"oauth": "0.9.15",
"request": "2.83.0",
"serve-static": "1.13.1",
"tar": "1.0.3",
"twitter": "1.2.5",
"when": "3.7.x"
},
"devDependencies": {
"nodemon": "^1.12.1",
"mocha": "4.1.0",
"should": "13.2.1",
"sinon": "4.1.5"
}
}