-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.26 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-p build:*",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"build:remix": "remix build",
"dev": "run-p dev:*",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"dev:remix": "remix dev",
"dev:sonar": "sonar start -s ./.data --disable-authentication",
"start": "run-p start:*",
"start:remix": "remix-serve build",
"start:sonar": "sonar start -s ./.data --disable-authentication"
},
"dependencies": {
"@arsonar/client": "^0.6.0-beta.1",
"@arsonar/server": "^0.6.0-beta.1",
"@remix-run/node": "^1.5.1",
"@remix-run/react": "^1.5.1",
"@remix-run/serve": "^1.5.1",
"autoprefixer": "^10.4.7",
"dotenv": "^16.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.4.0",
"readable-bytes": "^2.0.2",
"simple-isbn": "^1.1.5",
"tailwindcss": "^3.1.4"
},
"devDependencies": {
"@remix-run/dev": "^1.5.1",
"@remix-run/eslint-config": "^1.5.1",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.17",
"eslint": "^8.15.0",
"typescript": "^4.6.4"
},
"engines": {
"node": ">=14"
}
}