-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (44 loc) · 1.18 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
{
"name": "mirroros-api",
"version": "1.0.0",
"description": "API for MirroOS",
"main": "lib/app.js",
"scripts": {
"test:cm": "npm run compile && mocha --recursive --compilers js:babel-core/register",
"test": "mocha --recursive --compilers js:babel-core/register",
"start": "source .env.example && babel-watch ./lib/app.js",
"compile": "babel --presets es2015,stage-2 -d dist/ lib/",
"serve": "nodemon dist/app.js"
},
"keywords": [
],
"author": "MirrorOS",
"license": "UNLICENSED",
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "~1.17.1",
"cookie-parser": "~1.4.3",
"dotenv-safe": "^4.0.4",
"express": "^4.15.3",
"jade": "~1.11.0",
"mongoose": "^4.10.2",
"morgan": "~1.8.1",
"node-cron": "^1.2.0",
"q": "^1.5.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"babel-watch": "^2.0.6",
"chai": "^4.0.0",
"debug": "~2.6.3",
"faker": "^4.1.0",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"standard": "^10.0.2"
}
}