This repository has been archived by the owner on Jun 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.65 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
{
"name": "@snowball-tech/pandacss-repro",
"version": "1.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"yarn": "^3.0.0",
"node": "^18.0.0"
},
"type": "module",
"publishConfig": {
"access": "restricted"
},
"scripts": {
"prebuild": "yarn run clean:build && mkdir -p ./dist",
"build": "yarn run prebuild && yarn run build:code && yarn run -T concurrently \"next build\" \"yarn run build:info\" \"yarn run build:styles\"",
"build:code": "yarn panda codegen",
"build:info": "yarn panda ship --outfile dist/panda.buildinfo.json",
"prebuild:styles": "mkdir -p ./dist",
"build:styles": "yarn run prebuild:styles && yarn panda cssgen --outfile panda.css",
"clean:build": "rm -Rf ./dist >/dev/null 2>&1 || true",
"clean:next": "rm -Rf ./.next >/dev/null 2>&1 || true",
"predev": "yarn run clean:next && yarn run build:code",
"dev": "yarn run predev && next dev",
"setup": "yarn install && yarn run build:code",
"start": "next start",
"pretypes:check": "yarn run build:code",
"types:check": "yarn run pretypes:check && tsc --noEmit"
},
"dependencies": {
"@snowball-tech/design-tokens": "^3.3.1",
"@snowball-tech/fractal": "^1.2.5",
"lodash": "^4.17.21",
"next": "^13.4.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@pandacss/dev": "^0.5.1",
"@types/lodash": "^4.14.195",
"@types/node": "^20.3.3",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"concurrently": "^8.2.0",
"postcss": "^8.4.24",
"prop-types": "^15.8.1",
"typescript": "^5.1.6"
}
}