forked from zvecr/rest-ahk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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": "rest-ahk",
"version": "1.0.0",
"description": "",
"private": true,
"main": "src/app.js",
"scripts": {
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "eslint ./src",
"lint:md": "remark .",
"test": "mocha --require @babel/register --recursive --exit",
"serve": "nodemon --inspect --exec babel-node ./src/app.js",
"build": "babel src --out-dir dist",
"prod": "node dist/app.js",
"start": "npm run build && npm run prod"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"del": "^4.1.1",
"express": "^4.17.1",
"express-queue": "0.0.12",
"helmet": "^3.18.0",
"md5": "^2.2.1",
"memory-cache": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"node-mocks-http": "^1.7.6",
"nodemon": "^1.19.1",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.3",
"sinon": "^7.3.2"
}
}