-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "durer-jatekok",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"test:unit": "jest",
"test": "npm run lint && npm run test:unit",
"test:watch": "npm run test:unit -- --watchAll",
"build": "parcel build src/index.html --public-url=/durer-jatekok/ --no-source-maps",
"lint": "eslint \"src/**/*.js\" --no-fix",
"lint:fix": "eslint \"src/**/*.js\" --fix",
"audit": "better-npm-audit audit -- --omit=dev",
"dev": "parcel serve src/index.html --no-cache --open --port=8012",
"dev:withcache": "parcel src/index.html --open --port=8012",
"local-build": "parcel build src/index.html && http-server ./dist --push-state -o"
},
"dependencies": {
"@headlessui/react": "2.1.9",
"lodash": "4.17.21",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.26.2",
"tailwindcss": "3.4.13",
"uuid": "10.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.25.7",
"@babel/preset-react": "7.25.7",
"@testing-library/react": "16.0.1",
"better-npm-audit": "3.11.0",
"eslint": "9.12.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-react": "7.37.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "4.0.2",
"parcel": "2.12.0",
"process": "0.11.10"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"postcss": {
"plugins": {
"tailwindcss": {}
}
}
}