-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1007 Bytes
/
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
{
"name": "_api",
"version": "1.0.0",
"description": "an autogenerated CRUD API built on LowDB and ExpressJS",
"main": "src/index.js",
"scripts": {
"start": "babel-node src/index.js",
"watch": "nodemon --ignore '*.json' --exec babel-node src/index.js"
},
"author": "Jason Zi Feng Lei",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TokenChingy/_api.git"
},
"dependencies": {
"ajv": "^6.10.2",
"body-parser": "^1.19.0",
"cryptr": "^6.0.1",
"express": "^4.17.1",
"express-rate-limit": "^5.0.0",
"lodash": "^4.17.15",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"morgan": "^1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/node": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^2.0.1"
}
}