forked from bsommardahl/udacity-ci-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "udacity-ci-1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "npm run build -- -w",
"prestart": "npm run build",
"start": "node ./dist/index.js",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/papicool/ci_pipeline.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/papicool/ci_pipeline/issues"
},
"homepage": "https://github.com/papicool/ci_pipeline#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-object-rest-spread": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"jest": "^26.0.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@types/express": "^4.17.6",
"express": "^4.17.1",
"tslint": "^6.1.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/src/.*\\.test.(ts|tsx|js)$"
}
}