-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1008 Bytes
/
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
{
"name": "typescript",
"version": "1.0.0",
"main": "index.js",
"description": "starting point for kata training on typescript",
"scripts": {
"pack": "",
"build": "tsc",
"build-w": "tsc -w",
"test": "jest --bail --config ./.configs/jest.config.js --runInBand",
"tdd": "jest --verbose --config ./.configs/jest.config.js --runInBand --watchAll",
"test:coverage": "jest --coverage --bail --config ./.configs/jest.config.js --runInBand",
"start": "ws"
},
"repository": {
"type": "git",
"url": ""
},
"devDependencies": {
"@types/node": "13.7.2",
"@types/jest": "25.1.2",
"babel-preset-env": "1.7.0",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"ts-jest": "25.2.1",
"ts-node": "8.6.2",
"typescript": "3.7.5",
"webpack": "4.41.6",
"webpack-raw-bundler": "1.3.6",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.11",
"jest-date-mock": "1.0.8"
},
"dependencies": {
"local-web-server": "4.0.0"
}
}