-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "calculator",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"client-install": "npm install --prefix client",
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asibat/calculator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/asibat/calculator/issues"
},
"homepage": "https://github.com/asibat/calculator#readme",
"dependencies": {
"@koa/cors": "^2.2.3",
"concurrently": "^4.1.0",
"http-status": "^1.3.1",
"koa": "^2.7.0",
"koa-body": "^4.0.8",
"koa-router": "^7.4.0",
"lodash": "^4.17.11"
},
"devDependencies": {
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.10",
"prettier": "^1.16.4"
}
}