generated from profydev/prolog-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.23 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
{
"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": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@fontsource/inter": "^5.0.18",
"@mui/icons-material": "^6.1.7",
"@mui/material": "^6.1.1",
"@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": "^14.2.4",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-aria-components": "^1.5.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@storybook/addon-actions": "^8.1.7",
"@storybook/addon-essentials": "^8.1.7",
"@storybook/addon-interactions": "^8.1.7",
"@storybook/addon-links": "^8.1.7",
"@storybook/components": "^8.1.7",
"@storybook/nextjs": "^8.1.7",
"@storybook/react": "^8.1.7",
"@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.13.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": "^15.2.10",
"prettier": "^3.0.2",
"sass": "^1.66.0",
"storybook": "^8.1.7",
"stylelint": "^15.10.3",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-prettier": "^4.0.2",
"typescript": "^5.1.6"
}
}