-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.16 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.16 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "dataset-api",
"version": "1.1.0",
"description": "",
"main": "build/index.js",
"scripts": {
"precommit": "lint-staged",
"prepush": "npm run build && npm test",
"test": "sls offline start --exec \"nyc mocha\"",
"start": "npm run build && sls offline start",
"deploy": "npm run build && npm test && sls deploy",
"build": "tsc --outDir dist && copy 'src/**/*.json' dist",
"generate-token": "ts-node script/generate-token.ts"
},
"lint-staged": {
"*.{d.ts,ts,json,md}": ["prettier --write", "git add"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SingularData/dataset-api.git"
},
"author": "Haoliang Yu <haholiang.yu@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SingularData/dataset-api/issues"
},
"homepage": "https://github.com/SingularData/dataset-api#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/dotenv": "^4.0.2",
"@types/ini": "^1.3.29",
"@types/mocha": "^2.2.48",
"@types/node-fetch": "^1.6.7",
"chai": "^4.1.2",
"copy": "^0.3.1",
"dotenv": "^5.0.0",
"husky": "^0.14.3",
"ini": "^1.3.5",
"lint-staged": "^6.1.1",
"mocha": "^5.0.1",
"node-fetch": "^2.0.0",
"nyc": "^11.5.0",
"prettier": "^1.10.2",
"serverless": "^1.27.1",
"serverless-dotenv-plugin": "^1.1.2",
"serverless-offline": "^3.20.3",
"source-map-support": "^0.5.3",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"dependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/body-parser": "^1.16.8",
"@types/config": "0.0.33",
"@types/express": "^4.11.1",
"@types/jsonwebtoken": "^7.2.5",
"@types/lodash": "^4.14.104",
"@types/lodash.assign": "^4.2.3",
"@types/node": "^9.4.6",
"aws-sdk": "^2.197.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"elasticsearch": "^14.1.0",
"express": "^4.16.2",
"http-aws-es": "^4.0.0",
"jsonwebtoken": "^8.1.1",
"lodash": "^4.17.5",
"serverless-http": "^1.5.3"
},
"nyc": {
"extension": [".ts"],
"exclude": ["**/*.d.ts"],
"reporter": ["text-summary", "html"],
"all": true
}
}