This repository was archived by the owner on Aug 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.35 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.35 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
{
"name": "function-watcher",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/unzipper": "^0.9.2",
"busboy": "^0.3.1",
"colors": "^1.3.3",
"express": "^4.16.4",
"morgan": "^1.9.1",
"ramda": "^0.26.1",
"rimraf": "^2.6.3",
"unzipper": "^0.9.11",
"winston": "^3.2.1"
},
"scripts": {
"build-ts": "yarn tsc",
"watch-ts": "yarn tsc -w",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"start": "yarn ts-node src/server.ts",
"test": "jest"
},
"devDependencies": {
"@types/busboy": "^0.2.3",
"@types/colors": "^1.2.1",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/morgan": "^1.7.35",
"@types/ramda": "^0.26.8",
"@types/rimraf": "^2.0.2",
"@types/winston": "^2.4.4",
"jest": "^24.7.1",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.4"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}