-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"private": true,
"name": "remix-app-template",
"description": "",
"license": "",
"scripts": {
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --env production",
"build:svgs": "npm run generate:svgs",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:svgs": "watch \"npm run generate:svgs\" svgs",
"dev:remix": "remix watch",
"dev:netlify": "cross-env NODE_ENV=development netlify dev",
"generate:css": "postcss styles/global.css --dir app/styles",
"generate:svgs": "svgr --typescript --out-dir app/svgs svgs"
},
"dependencies": {
"@fontsource/inter": "^4.5.12",
"@remix-run/netlify": "^1.7.4",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@netlify/functions": "^1.3.0",
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@svgr/cli": "^6.4.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"autoprefixer": "^10.4.12",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"postcss-import-ext-glob": "^2.0.1",
"postcss-url": "^10.1.3",
"slugify": "^1.6.5",
"tailwindcss": "^3.1.8",
"tailwindcss-logical": "^3.0.0",
"typescript": "^4.1.2",
"watch": "^1.0.2",
"xxhashjs": "^0.2.2"
},
"engines": {
"node": ">=14"
},
"sideEffects": false
}