generated from CaenCamp/project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.42 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
{
"name": "caencamp-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"test": "TZ=UTC jest --watch",
"test:ci": "TZ=UTC jest",
"cypress": "cypress open",
"cypress:headless": "cypress run --config-file=cypress.config.js",
"e2e": "start-server-and-test start http://localhost:3111 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3111 cypress:headless --config-file=cypress.config.js",
"prepare": "husky install",
"linter": "eslint '*/**/*.{js,jsx}'",
"linter:fix": "eslint '*/**/*.{js,jsx}' --fix"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"dependencies": {
"axios": "1.0.0",
"boring-avatars": "1.7.0",
"date-fns": "2.29.3",
"immer": "9.0.15",
"jest-environment-jsdom": "29.1.2",
"next": "12.3.1",
"postcss": "8.4.17",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.36.1",
"react-is": "18.2.0",
"react-player": "2.11.0",
"swr": "1.3.0",
"trim": ">=0.0.3"
},
"devDependencies": {
"@babel/core": "7.19.3",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@next/eslint-plugin-next": "12.3.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"axe-core": "4.4.3",
"babel-jest": "29.1.2",
"babel-loader": "8.2.5",
"cypress": "10.9.0",
"cypress-axe": "1.0.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-security": "1.5.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unicorn": "44.0.1",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.1.2",
"jest-axe": "6.0.0",
"lint-staged": "13.0.3",
"next-sitemap": "2.5.17",
"prettier": "2.7.1",
"react-test-renderer": "18.2.0",
"start-server-and-test": "1.14.0",
"tslib": "2.4.0"
}
}