-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.22 KB
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
{
"name": "pogues",
"version": "3.1.0-rc-load-units.0",
"description": "Outil de conception et de test de questionnaires.",
"scripts": {
"test:next": "cd next && pnpm test",
"test:legacy": "cd legacy && pnpm test",
"build:next": "cd next && pnpm build",
"build:legacy": "cd legacy && pnpm build",
"test": "pnpm test:next && pnpm test:legacy",
"build": "pnpm build:next && pnpm build:legacy",
"lint": "pnpm lint:next && pnpm lint:legacy",
"lint:next": "cd next && pnpm lint",
"lint:legacy": "cd legacy && pnpm lint",
"postbuild": "node scripts/postbuild.cjs",
"preview": "vite preview"
},
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"vite": "^8.0.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write --list-different"
],
"!(*.js|*.jsx|*.ts|*.tsx)": "prettier --write --ignore-unknown --list-different"
}
}