-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "mes-aides-stats",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"start": "npm run build && next start",
"build": "NODE_ENV=production next build",
"lint": "eslint --ext js --max-warnings 0 .",
"lint:fix": "eslint --fix .",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"format": "npm run prettier:fix && npm run lint:fix",
"cypress:open": "cypress open",
"test:e2e": "cypress run",
"ci:e2e": "start-server-and-test dev http://localhost:3000 test:e2e"
},
"author": "",
"license": "MIT",
"dependencies": {
"@nivo/bar": "^0.85.1",
"iframe-resizer": "^4.3.11",
"next": "^14.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"axe-core": "^4.9.0",
"cypress": "^13.6.4",
"cypress-axe-core": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"prettier": "^3.2.5",
"start-server-and-test": "^2.0.3"
}
}