-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.16 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "fixms-dashboard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": "webpack",
"deploy": "npm run webpack && npm run optimize:inline",
"deploy:local": "npm run clean && npm run webpack && npm run optimize:inline",
"before": "npm install",
"copy:html": "npm -v",
"copy:html2": "cp -r src/app/dashboard/index.html dist/",
"clean": "rm -rf dist/ ",
"optimize:inline": "node -v",
"optimize:inline2": "node scripts/optimize.js",
"start": "webpack serve --port 4200",
"startX": "npm run deploy & webpack serve --port 4200",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc",
"test": "jest --env=jsdom --coverage --runInBand --verbose",
"test:clear": "jest --clearCache",
"test:log": "jest --env=jsdom --verbose false",
"test:watch": "jest --env=jsdom --watchAll --coverage --runInBand --unhandled-rejections=strict ",
"clear:jest": "jest --clearCache",
"make-badges": "coverage-badges --output coverage/badges.svg",
"prepublish": "npm run test && npm run make-badges"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.5",
"@types/jquery": "^3.5.14",
"@types/node": "^17.0.35",
"@types/testing-library__dom": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vercel/ncc": "^0.34.0",
"coverage-badges-cli": "^1.1.1",
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"extra-watch-webpack-plugin": "^1.0.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-fetch-mock": "^3.0.3",
"node-fetch": "^3.3.1",
"prettier": "^2.2.1",
"ts-jest": "^29.0.5",
"ts-loader": "^8.0.17",
"ts-node": "^10.8.1",
"typescript": "^4.6.3",
"webpack": "^5.22.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.13.1",
"webpack-shell-plugin-next": "^2.2.2",
"whatwg-fetch": "^3.6.2"
}
}