-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "react-demo",
"description": "React demo",
"version": "3.1.8",
"author": "Simplicite Software <contact@simplicitesoftware.com> (http://www.simplicitesoftware.com/)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/simplicitesoftware/react-demo.git"
},
"type": "module",
"dependencies": {
"react": "19.2.7",
"react-dom": "19.2.7",
"simplicite": "3.1.8"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@eslint-react/eslint-plugin": "5.9.0",
"@ffflorian/jszip-cli": "3.16.4",
"@vitejs/plugin-react": "6.0.2",
"create-react-app": "5.1.0",
"eslint": "10.5.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"globals": "17.6.0",
"npm-check-updates": "22.2.3",
"stylelint": "17.13.0",
"stylelint-config-standard": "40.0.0",
"vite": "8.0.16"
},
"main": "index.js",
"scripts": {
"ncu": "ncu",
"eslint": "eslint --fix \"*.mjs\" \"src/**/*.jsx\"",
"stylelint": "stylelint --fix \"src/*.css\"",
"lint": "npm run eslint && npm run stylelint",
"start": "vite",
"build": "npm run lint && vite build",
"serve": "vite preview",
"zip": "rm -f SITE.zip && cd build && jszip-cli add --ignore *.LICENSE.txt --output ../SITE.zip ."
},
"engines": {
"node": ">=18"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}