-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "breathe",
"homepage": "/breathe",
"version": "0.1.0",
"private": true,
"dependencies": {
"howler": "^2.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.3"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages --no-history --dist build",
"reroll:port": "sed -i '' \"s/PORT=[0-9]\\{4\\}/PORT=3$(date '+%s' | rev | cut -c -3)/g\" package.json",
"watch:css": "postcss --verbose src/**/*.css --dir build -w",
"start": "npm-run-all -p watch:css start:js",
"start:js": "PORT=3116 react-scripts start",
"build": "npm-run-all build:css build:js",
"build:css": "postcss --verbose src/**/*.css --dir build",
"build:js": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@csstools/postcss-sass": "^5.1.1",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/howler": "^2.2.11",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"gh-pages": "^4.0.0",
"glob": "^10.3.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"postcss-nested": "^6.0.1",
"react-scripts": "^5.0.1",
"tailwindcss": "^3.4.1"
}
}