-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "react-demo",
"description": "React demo",
"version": "3.1.6",
"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.5",
"react-dom": "19.2.5",
"simplicite": "3.1.6"
},
"devDependencies": {
"@eslint/js": "9.39.3",
"@ffflorian/jszip-cli": "3.16.1",
"@vitejs/plugin-react": "6.0.1",
"create-react-app": "5.1.0",
"eslint": "9.39.3",
"eslint-plugin-react": "7.37.5",
"globals": "17.5.0",
"npm-check-updates": "21.0.2",
"stylelint": "17.8.0",
"stylelint-config-standard": "40.0.0",
"vite": "8.0.8"
},
"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"
]
}
}