-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.46 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ljas-counter",
"version": "1.0.0",
"description": "A simple counter SPA.",
"main": "build/development/app.js",
"author": "",
"scripts": {
"build": "webpack --mode development",
"build:debug": "node --inspect-brk=0.0.0.0:9231 node_modules/.bin/webpack --mode development",
"build:production": "NODE_ENV=production webpack --mode production",
"build:production:debug": "NODE_ENV=production node --inspect-brk=0.0.0.0:9231 node_modules/.bin/webpack --mode production",
"build:stats": "npm run build:production -- --json > stats.json",
"check-types": "tsc",
"dev": "nodemon --exec \"npm start\"",
"dev:production": "nodemon --config nodemon.production.json --exec \"npm run build:production && npm run start:production\"",
"format": "npm run format:check",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:styles": "stylelint \"src/**/*.{sass,scss}\"",
"lint:styles:fix": "npm run lint:styles -- --fix",
"lint-staged": "lint-staged",
"start": "webpack serve --mode development",
"start:production": "http-server build/production",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:coverage:open": "open coverage/lcov-report/index.html",
"test:debug": "node --inspect-brk=0.0.0.0:9230 node_modules/.bin/jest --runInBand",
"test:e2e": "playwright test",
"test:e2e:debug": "npm run test:e2e -- --debug",
"test:e2e:dev": "npm run test:e2e -- --ui",
"test:e2e:install": "playwright install --with-deps",
"test:e2e:report": "playwright show-report --host 0.0.0.0 --port 9323",
"test:watch": "npm run test -- --watch || npm run test -- --watchAll"
},
"dependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.2",
"bootstrap": "^5.3.1",
"bootstrap-icons": "^1.10.5",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^6.0.0",
"dotenv": "^16.4.5",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.1",
"ljas-webpack": "^0.1.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.29",
"postcss-loader": "^7.3.3",
"sass": "~1.64.2",
"sass-loader": "^13.3.2",
"typescript": "~5.3.3",
"webpack": "^5.85.0",
"webpack-cli": "^5.1.1",
"webpack-merge": "^5.9.0"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-playwright": "^1.6.1",
"http-server": "^14.1.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fixed-jsdom": "^0.0.2",
"msw": "^2.2.2",
"nodemon": "^2.0.22",
"prettier": "3.2.5",
"snapshot-diff": "^0.10.0",
"style-loader": "^3.3.3",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.1.0",
"ts-jest": "^29.1.0",
"undici": "^5.22.0",
"webpack-dev-server": "^5.0.4"
},
"private": true
}