-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.34 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "eva-skeleton",
"version": "0.0.0-development",
"description": "A skeleton project based on EvaEngine.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EvaEngine/EvaSkeleton.js.git"
},
"scripts": {
"ava": "LOG_LEVEL=error NODE_ENV=test node ./node_modules/.bin/ava --verbose --serial",
"start": "NODE_ENV=production node ./build/app.js",
"test": "npm run coverage",
"crontab": "NODE_ENV=production babel-node ./src/crontab",
"coverage": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava",
"dev": "nodemon --exec babel-node ./src/app.js",
"swagger": "rm -r ./build/* && npm run build && SWAGGER_VALID=1 node build/swagger.js",
"swagger-dev": "rm -r ./build/* && npm run build && nodemon --ignore 'node_modules/*' --ignore '**/*.json' --exec babel-node src/swagger.js",
"lint": "eslint src/* --ext .js",
"build": "babel -D -s -d build/ src/",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"ava": {
"files": [
"test/**/*.js",
"!test/bootstrap.js",
"!config/**/*.js"
],
"source": [
"src/**/*.js"
],
"failFast": true,
"tap": false,
"require": [
"babel-core/register",
"babel-polyfill"
],
"babel": "inherit"
},
"nyc": {
"require": [
"babel-core/register"
],
"include": [
"src/**/*.js"
]
},
"engines": {
"node": ">=8.0.0"
},
"pre-commit": [
"lint"
],
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"evaengine": "^0.10.0",
"pug": "^2.0.3",
"serve-favicon": "^2.5.0",
"serve-static": "^1.13.2"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"nock": "^9.4.4",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"semantic-release": "^15.9.5",
"travis-deploy-once": "^5.0.2"
}
}