-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.5 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
{
"name": "ma-prochaine-recette",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest",
"lint": "eslint --max-warnings=0 .",
"type-check": "tsc --pretty --noEmit",
"type-check:e2e": "tsc -p end_to_end/tsconfig.json --pretty --noEmit",
"test-all": "yarn lint && yarn type-check && yarn type-check:e2e && jest",
"e2e": "TS_NODE_PROJECT='./end_to_end/tsconfig.json' npx codeceptjs run --steps --config ./end_to_end/codecept.conf.js",
"docs": "jsdoc -c jsdoc.conf.json"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.10.10",
"axios": "^0.27.2",
"immer": "^9.0.15",
"next": "^12.3.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight-words": "^0.18.0",
"react-hook-form": "^7.32.2",
"sass": "^1.55.0",
"stopword": "^1.0.11",
"swr": "^1.3.0",
"use-mutation": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@codeceptjs/configure": "^0.10.0",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.0",
"@types/react-highlight-words": "^0.16.4",
"@types/stopword": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^28.1.3",
"better-docs": "^2.7.2",
"codeceptjs": "^3.2.3",
"eslint": "^8.24.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-codeceptjs": "^1.3.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.7.0",
"faker": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.5.1",
"jsdoc": "^3.6.11",
"mutationobserver-shim": "^0.3.7",
"parcel-bundler": "^1.12.5",
"playwright": "^1.26.1",
"pm2": "^5.2.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"rosie": "^2.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}