-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 806 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 806 Bytes
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
{
"name": "basic-rest",
"version": "1.0.0",
"description": "A basic lambda REST API.",
"main": "index.js",
"scripts": {
"build": "webpack",
"clean": "rimraf ./dist",
"lint": "tslint --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"cassava": "^2.4.0",
"chai": "^4.2.0",
"express": "^4.16.4",
"file-loader": "^2.0.0",
"import-glob-loader": "^1.1.0",
"rimraf": "^2.6.2",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"zip-webpack-plugin": "^3.0.0"
}
}