This repository has been archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.25 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
85
86
87
88
89
{
"name": "rapid-api",
"version": "0.1.0",
"description": "Rapid JavaScript development environment for building API",
"main": "bin/server.js",
"scripts": {
"start": "run-p server eslint:watch test:watch",
"start:prod": "cross-env NODE_ENV=production npm run server:prod",
"server": "nodemon bin/server.js --exec babel-node --color",
"server:prod": "babel-node bin/server.js --color",
"eslint": "eslint **/*.js --color",
"eslint:watch": "chokidar --initial --silent \"bin/**/*.js\" \"api/**/*.js\" -c \"npm run eslint\"",
"test": "mocha --reporter progress bin/test.js api/**/*.test.js --color",
"test:watch": "chokidar --initial --silent \"api/**/*.test.js\" -c \"npm run test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuotron/rapid-api.git"
},
"keywords": [
"mvc",
"feature-based",
"web-framework",
"starter-kit",
"boilerplate",
"express",
"rapid",
"REST",
"API"
],
"author": "Nuotron <hello@nuotron.co>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nuotron/rapid-api/issues"
},
"homepage": "https://github.com/nuotron/rapid-api#readme",
"dependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"chalk": "^2.4.1",
"chokidar-cli": "^1.2.1",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-rapid": "^0.1.0",
"express": "^4.16.4",
"limax": "^1.7.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mongoose": "^5.3.14",
"morgan": "^1.9.1",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"rapid-error-handler": "^0.1.0"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": "> 0.25%, not dead"
}
]
]
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"es6": true,
"node": true,
"mocha": true
},
"extends": "rapid",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
}
}