-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "imaginarium",
"version": "1.4.0",
"main": "index.js",
"author": "Michal Kvasničák <[email protected]>",
"license": "MIT",
"dependencies": {
"aws-serverless-express": "^3.3.6",
"express": "^4.17.1",
"sharp": "0.21.3"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/aws-lambda": "^8.10.31",
"@types/aws-serverless-express": "^3.3.1",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.17",
"@types/jest-image-snapshot": "^2.8.0",
"@types/node": "^10.12.18",
"@types/sharp": "^0.22.2",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"@zeit/ncc": "^0.20.4",
"aws-sdk": "^2.506.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"jest-image-snapshot": "^2.9.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"typescript": "^3.5.3"
},
"resolutions": {
"color-name": "1.1.4"
},
"scripts": {
"build": "node build.js",
"deploy": "node build-docker.js",
"lint": "eslint --ext .js,.ts ./src",
"lint:fix": "eslint --fix --ext .js,.ts ./src",
"typecheck": "tsc -p . --noEmit",
"start": "node build.js && node start.js",
"test": "jest",
"test:ci": "jest --ci --runInBand",
"test:watch": "jest --watch"
}
}