-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 860 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
{
"name": "api-server",
"version": "1.0.0",
"description": "Api Server",
"main": "index.js",
"scripts": {
"dev": "micro-dev",
"start": "NODE_ENV=production micro -l tcp://0.0.0.0:${PORT-3000}",
"test": "ava -v",
"test:coverage": "nyc ava"
},
"keywords": [
"api",
"micro"
],
"author": "Gunjan Soni <[email protected]>",
"license": "ISC",
"dependencies": {
"micro": "^9.3.3",
"micro-cors": "^0.1.1",
"microrouter": "^3.1.3"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"micro-dev": "^3.0.0",
"nyc": "^13.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"test-listen": "^1.1.0"
}
}