-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "expressapi",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node -r esm -r dotenv/config app.js",
"dev": "nodemon --exec \"npm run lint && npm start\"",
"lint": "eslint **/*.js",
"deploy": "gcloud config set project karma-25 && gcloud app deploy --no-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/25karma/expressapi.git"
},
"author": "Amos Yu",
"license": "MIT",
"bugs": {
"url": "https://github.com/25karma/expressapi/issues"
},
"homepage": "https://github.com/25karma/expressapi#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.17.0",
"eslint-plugin-only-warn": "^1.0.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"fs": "0.0.1-security",
"jade": "^1.11.0",
"marked": "^1.1.1",
"memjs": "^1.2.2",
"node-fetch": "^2.6.1",
"path": "^0.12.7"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}