This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
generated from ost-cas-fee-adv-22-23/cas-fee-adv-qwacker-tpl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.6 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "app-yeahyeahyeah",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check 'src/**/*.{ts,tsx}' 'data/*.json' --config ./.prettierrc",
"format": "prettier --write 'src/**/*.{ts,tsx}' 'data/*.json' --config ./.prettierrc",
"dep-graph:validate": "npx depcruise src --include-only \"^src\" --config .dependency-cruiser.js",
"dep-graph:create-svg": "npx depcruise src --include-only \"^src\" --config .dependency-cruiser.js --output-type dot | dot -T svg > dependency-graph.svg",
"prepare": "husky install",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:ci-silent": "jest --ci --silent",
"test:ci-coverage": "jest --ci --silent --coverage",
"test:debug": "jest --no-cache --debug",
"test:e2e": "playwright test",
"test:e2e:headful": "playwright test --headed",
"test:healthcheck": "npx playwright test --project=chromium -g '@healthcheck' --config=./playwright.checks.config.ts",
"test:monkeytest": "npx playwright test --project=chromium -g '@monkeytest' --config=./playwright.monkey.config.ts",
"test:monkeytest:headful": "npx playwright test --project=chromium --ui -g '@monkeytest' --config=./playwright.monkey.config.ts"
},
"dependencies": {
"@next/font": "13.1.1",
"@smartive-education/design-system-component-library-yeahyeahyeah": "latest",
"@tailwindcss/forms": "^0.5.3",
"axios": "^1.3.4",
"dayjs": "^1.11.7",
"lodash.debounce": "^4.0.8",
"next": "13.1.1",
"next-auth": "^4.16.4",
"next-seo": "^5.15.0",
"next-transpile-modules": "^10.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"rxjs": "^7.8.0",
"styled-components": "^5.3.6",
"swr": "^2.1.0",
"ulid": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-syntax-typescript": "^7.20.0",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@playwright/test": "^1.33.0",
"@smartive/eslint-config": "^3.1.1",
"@smartive/prettier-config": "^3.0.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "^29.5.1",
"@types/lodash.debounce": "^4.0.7",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "5.14.5",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"babel-plugin-twin": "^1.1.0",
"dependency-cruiser": "^12.10.0",
"dotenv": "^16.0.3",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"gremlins.js": "^2.2.0",
"husky": "^8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-mock-axios": "^4.7.1",
"lint-staged": "^13.1.2",
"postcss": "^8.4.19",
"tailwindcss": "^3.2.7",
"twin.macro": "^3.1.0",
"typescript": "^4.9.4"
},
"babelMacros": {
"twin": {
"config": "tailwind.config.js",
"preset": "styled-components"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint --config .eslintrc.json && git add -A .",
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*": [
"eslint"
]
},
"volta": {
"node": "16.19.1",
"npm": "9.2.0"
}
}