-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "prolog-app",
"version": "14.5.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:code": "eslint --ignore-path .gitignore .",
"lint:styles": "stylelint --ignore-path .gitignore \"**/*.scss\"",
"check:types": "tsc --noEmit",
"prettier": "prettier --ignore-path .gitignore --check .",
"cypress": "cypress open",
"test": "jest --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"dependencies": {
"@fontsource/inter": "^5.0.8",
"@tanstack/react-query": "^4.32.6",
"@tanstack/react-query-devtools": "^4.32.6",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"next": "^13.4.18",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@storybook/addon-actions": "^7.3.1",
"@storybook/addon-essentials": "^7.3.1",
"@storybook/addon-interactions": "^7.3.1",
"@storybook/addon-links": "^7.3.1",
"@storybook/components": "^7.3.1",
"@storybook/nextjs": "^7.3.1",
"@storybook/react": "^7.3.1",
"@storybook/testing-library": "^0.2.0",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.197",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-loader": "^9.1.3",
"cypress": "^13.2.0",
"eslint": "^8.47.0",
"eslint-config-next": "^13.4.18",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"sass": "^1.66.0",
"storybook": "^7.3.1",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-prettier": "^4.0.2",
"typescript": "^5.1.6"
}
}