-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
56 lines (56 loc) · 1.23 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
50
51
52
53
54
55
56
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "export NODE_ENV=test; jest",
"zip": "git archive -o ../beenion-web-rater.zip HEAD:ui-chrome-rater"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/*.test.ts"
]
},
"author": "",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.275.1",
"getstream": "^3.19.0",
"joi": "^13.4.0",
"md5": "^2.2.1",
"node-fetch": "^2.2.0",
"ntp-client": "^0.5.3",
"source-map-support": "^0.5.19",
"sqs-consumer": "^3.8.0"
},
"devDependencies": {
"@types/jest": "^23.1.6",
"@types/joi": "^13.4.0",
"@types/md5": "^2.1.32",
"@types/node": "^10.5.2",
"@types/react": "^16.4.14",
"jest": "^23.4.1",
"pm2": "^3.2.2",
"serverless": "^1.32.0",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-plugin-optimize": "^3.1.1-rc.1",
"serverless-plugin-typescript": "^1.1.5",
"ts-jest": "^23.0.0",
"ts-node": "^7.0.0",
"typescript": "^3.3.0-rc"
}
}