This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
94 lines (94 loc) · 3 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
93
94
{
"name": "pat-frontend-template",
"version": "1.0.0",
"description": "Frontend template based on Vite",
"author": "Nordcloud Engineering",
"license": "Apache-2.0",
"homepage": "https://github.com/nordcloud/pat-frontend-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nordcloud/pat-frontend-template.git"
},
"bugs": {
"url": "https://github.com/nordcloud/pat-frontend-template/issues"
},
"keywords": [
"vite",
"reactjs",
"typescript",
"styled-components",
"vitest",
"testing-library",
"template",
"boilerplate",
"eslint",
"prettier",
"stylelint"
],
"scripts": {
"dev": "vite",
"dev:clean": "npm run dev -- --force",
"build": "tsc && vite build",
"serve": "vite preview --port 3000",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"test": "vitest run",
"test:watch": "vitest watch",
"test:silent": "npm run test -- --silent",
"test:commit": "npm run test:silent -- --changed",
"test:coverage": "vitest run --coverage",
"check:types": "tsc --pretty --skipLibCheck --noEmit",
"check:format": "prettier --check \"**/*.+(js|json|ts|tsx)\"",
"check:circular-deps": "./scripts/circular-deps.js",
"check:knip": "knip",
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
"lint:quiet": "npm run lint -- --quiet",
"lint:css": "stylelint '**/*.+(ts|tsx)'",
"lint:css:quiet": "npm run lint:css -- --quiet",
"lint:lockfile": "lockfile-lint",
"validate:all": "run-p check:types check:format check:circular-deps check:knip lint:quiet lint:css:quiet lint:lockfile",
"postinstall": "patch-package && husky install"
},
"engines": {
"node": "~18.12.0 || ~18.13.0",
"npm": "~8.19.0"
},
"dependencies": {
"@nordcloud/gnui": "^8.19.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.7"
},
"devDependencies": {
"@nordcloud/eslint-config-pat": "^8.0.0",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^18.11.9",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.2",
"babel-plugin-styled-components": "^1.12.1",
"eslint": "^8.49.0",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"knip": "^2.19.11",
"lint-staged": "^14.0.1",
"lockfile-lint": "^4.12.1",
"madge": "^6.1.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier": "^3.0.3",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-env-compatible": "^1.1.1",
"vite-plugin-html": "^3.2.0",
"vite-plugin-svgr": "^4.1.0",
"vitest": "^0.34.2"
}
}