-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.88 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
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "typescript-webpack-on2-starter-kit",
"version": "1.0.0",
"description": "TypeScript + Webpack starter kit",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"start": "webpack --mode=development --colors && npm run server && concurrently -r -n \"Webpack,Nodemon\" \"npm run webpack-watch\"",
"server": "webpack-dev-server --open",
"webpack-watch": "webpack --watch --colors",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/on2-dev/typescript-webpack-starter-kit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/on2-dev/typescript-webpack-starter-kit/issues"
},
"homepage": "https://github.com/on2-dev/typescript-webpack-starter-kit#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"collectCoverageFrom": [
"src/**/{!(index),}.ts",
"!<rootDir>/node_modules/",
"!<rootDir>/path/to/dir/"
],
"testPathIgnorePatterns": [
"./src/index.ts",
"./dist"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
},
"coverageReporters": [
"text"
]
},
"devDependencies": {
"@types/jest": "^25.1.3",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-livereload-plugin": "^2.2.0"
},
"dependencies": {
"@types/node": "^13.7.2"
}
}