forked from yoyow-org/yoyow-faucet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.13 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
{
"name": "yoyow-faucet",
"version": "0.0.0",
"engines": {
"node": ">=6.9.2",
"npm": ">=3.10.9"
},
"private": true,
"scripts": {
"test": "babel-node examples/test",
"testupdate": "babel-node examples/updatePosting",
"testsign": "babel-node examples/signature",
"start": "cross-env PORT=8000 babel-node ./bin/www --presets es2015,stage-2",
"debug": "cross-env DEBUG=yoyow-faucet nodemon ./bin/www --exec babel-node",
"build": "webpack --progress --colors"
},
"dependencies": {
"async": "^2.5.0",
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"cross-env": "^5.0.5",
"debug": "~2.6.3",
"ejs": "~2.5.6",
"express": "~4.15.2",
"morgan": "^1.9.1",
"mysql": "^2.13.0",
"mysql-queues": "^1.0.0",
"nodegrass": "0.0.3",
"request": "^2.85.0",
"serve-favicon": "~2.4.2",
"yoyowjs-lib": "git+https://github.com/yoyow-org/yoyowjs-lib.git"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"nodemon": "^1.11.0",
"webpack": "^3.3.0"
}
}