forked from vanilla-extract-css/vanilla-extract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "vanilla-extract",
"version": "0.0.0",
"private": true,
"author": "SEEK",
"license": "MIT",
"scripts": {
"dev": "preconstruct dev",
"build": "preconstruct build",
"watch": "preconstruct watch",
"start-fixture": "ts-node ./test-helpers/src/startFixtureCLI",
"start": "pnpm start-fixture themed",
"start-site": "manypkg run site start",
"build-site": "manypkg run site build",
"test:jest": "jest",
"test:playwright": "playwright test",
"format": "prettier --write .",
"lint": "manypkg check && prettier --check . && tsc",
"copy-readme-to-packages": "ts-node scripts/copy-readme-to-packages",
"version": "changeset version && pnpm install --lockfile-only",
"release": "pnpm copy-readme-to-packages && pnpm build && changeset publish"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"volta": {
"node": "14.16.0"
},
"dependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@changesets/changelog-github": "^0.4.0",
"@changesets/cli": "^2.17.0",
"@manypkg/cli": "^0.19.1",
"@playwright/test": "^1.14.1",
"@preconstruct/cli": "^2.0.1",
"@swc/core": "^1.2.112",
"@types/jest": "^27.0.3",
"@vanilla-extract/babel-plugin": "*",
"babel-jest": "^27.3.1",
"fast-glob": "^3.2.7",
"jest": "^27.3.1",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"typescript": "^4.5.0"
}
}