-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.15 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.15 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
{
"name": "crownstone-aws",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"prebuild": "npm run lint && rimraf function.zip",
"postbuild": "zip -r function.zip . -x 'src/*' -x '.*' -x 'assets/*'",
"lint": "tsc --noEmit && eslint \"./src/**/*.ts\" --quiet --fix"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.59",
"@types/express": "^4.17.7",
"@types/i18n": "^0.8.6",
"@types/i18next": "^13.0.0",
"@types/lodash.flattendeep": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"actions-on-google": "^2.12.0",
"ask-sdk-core": "^2.8.0",
"ask-sdk-model": "^1.28.1",
"got": "^11.5.1",
"i18next": "^19.6.2",
"lodash.flattendeep": "^4.4.0",
"source-map-support": "^0.5.19"
}
}