-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"name": "knockout-boilerplate",
"version": "1.2.0",
"description": "An example of using TypeScript and Knockout’s type definitions to create view models, components and bindings that are strongly typed.",
"repository": "git@github.com:FJala-Tr2020/knockout-boilerplate.git",
"types": "dist/knockout.validation.d.ts",
"scripts": {
"start": "webpack serve --open",
"build": "webpack --mode production",
"lint": "eslint . --ext .ts,.tsx",
"docs": "typedoc --entryPoints src/*.ts",
"coverage": "jest --coverage",
"test": "jest"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/runtime": "^7.14.8",
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"dotenv-webpack": "^7.0.3",
"knockout": "^3.5.1",
"knockout.validation": "^2.0.4"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.7",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^5.3.2",
"husky": "^6.0.0",
"jest": "^26.6.3",
"jest-html": "^1.5.0",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.3.2",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.1.0",
"typedoc": "^0.20.37",
"typescript": "^4.3.5",
"webpack": "^5.46.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"keywords": [],
"author": "Jon Keeping",
"license": "MIT",
"jestSonar": {
"reportPath": "coverage",
"reportFile": "coverage-report.xml",
"indent": 4
}
}