-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.4 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
79
80
81
82
83
84
85
86
87
88
89
{
"name": "euphrosyne",
"version": "1.0.0",
"description": "Ouvrir les données de NewAglaé, l'Accélérateur Grand Louvre d'Analyses Elémentaires",
"type": "module",
"scripts": {
"test": "./node_modules/.bin/vitest",
"build": "NODE_ENV=${NODE_ENV:-production} webpack --mode=production",
"build:dev": "webpack --mode=development --watch",
"lint": "npx eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:tsc": "tsc --noEmit --skipLibCheck",
"prettier": "npx prettier . --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betagouv/euphrosyne.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betagouv/euphrosyne/issues"
},
"homepage": "https://github.com/betagouv/euphrosyne#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"prettier": "3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/list": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@gouvfr/dsfr": "^1.12.1",
"@h5web/app": "^13.0.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"mini-css-extract-plugin": "^2.9.2",
"promise-polyfill": "8.3.0",
"purgecss-webpack-plugin": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.3.1",
"remixicon": "^4.5.0",
"source-map-loader": "^5.0.0",
"ts-loader": "^9.5.1",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"whatwg-fetch": "^3.6.20"
},
"eslintConfig": {
"root": true,
"extends": [
"eslint:recommended"
],
"ignorePatterns": [
"_static/**",
"**/assets/dist/**"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "latest"
},
"globals": {
"django": false,
"dsfr": false
},
"env": {
"browser": true,
"es6": true,
"node": true
}
}
}