-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
49
{
"name": "userstats",
"version": "0.0.1",
"description": "API that persists daily stats of compare users usage",
"main": "index.js",
"scripts": {
"test": "dotenv -e .env.default tap",
"offline": "dotenv -e .env.default serverless offline -- --httpsProtocol certs",
"swagger": "yaml2json swagger.yml --pretty --save",
"start": "npm run swagger && npm run offline",
"watch": "nodemon --exec npm test test/unit test/integration"
},
"pre-commit": [
"swagger"
],
"repository": {
"type": "git",
"url": "https://github.com/cooleagle8837/userstat.git"
},
"author": "",
"license": "ISC",
"devDependencies": {
"aws-sdk": "^2.117.0",
"babel-eslint": "^6.1.2",
"debug": "^3.0.1",
"deepmerge": "^2.0.1",
"dotenv-cli": "^1.1.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-gritcode": "github:gritcode/module-eslint-config-gritcode",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"migrate": "^0.2.4",
"nodemon": "^1.14.10",
"serverless": "1.6.0",
"serverless-offline": "^3.13.2",
"tap": "^6.3.2",
"yamljs": "^0.3.0"
},
"dependencies": {
"ajv": "^4.9.2",
"debug": "^3.0.1",
"moment": "^2.20.1",
"peegee": "git+ssh://git@gitlab.grit.work:resources/peegee.git",
"swagger-parser": "^3.4.1",
"utils": "git+ssh://git@gitlab.grit.work:resources/utils.git"
}
}