-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.59 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
{
"name": "irvv17-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "npx prettier --write './**/*.{ts,tsx}'",
"postinstall": "husky install",
"test:e2e": "playwright test",
"test:dev": "jest --watch",
"test": "jest"
},
"dependencies": {
"baseui": "12.2.0",
"classnames": "^2.3.1",
"next": "^13.3.1",
"next-themes": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.10",
"styletron-engine-atomic": "^1.5.0",
"styletron-react": "^6.1.0"
},
"devDependencies": {
"@playwright/test": "^1.25.1",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/node": "18.6.4",
"@types/react": "^18.2.0",
"@types/react-dom": "18.0.6",
"@types/styletron-engine-atomic": "^1.1.1",
"@types/jest": "^29.5.1",
"@types/styletron-react": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"autoprefixer": "^10.4.8",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.21.0",
"eslint-config-next": "^13.0.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-baseui": "^12.2.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "4.7.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}