-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"private": true,
"name": "peram-sathyam-personal-site",
"description": "Peram Sathyam's personal site",
"scripts": {
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test": "echo 'passed'",
"build": "npm run build:css:prod && remix build",
"build:css": "postcss styles/**/*.css --base styles --dir app/styles",
"build:css:prod": "npm run build:css -- --env production",
"dev": "run-p dev:css dev:remix",
"dev:remix": "remix dev",
"dev:css": "npm run build:css -- --w",
"deploy": "rm -rf build && rm -rf app/styles/*.css && flyctl deploy",
"start": "remix-serve build",
"upgrade:remix": "remix migrate"
},
"dependencies": {
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@xstate/inspect": "^0.7.0",
"@xstate/react": "^3.0.1",
"clsx": "^1.2.1",
"isbot": "^3.5.4",
"pretty-format": "^29.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"xstate": "^4.33.6"
},
"devDependencies": {
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-syntax-highlighter": "^15.5.5",
"autoprefixer": "^10.4.12",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}