-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"author": "Zheeeng <[email protected]>",
"private": false,
"scripts": {
"test": "jest --passWithNoTests",
"dev": "npm-run-all --parallel dev:*",
"dev:lib": "pnpm --filter styled-css-base dev",
"dev:example": "pnpm --filter styled-css-base-example dev",
"build": "pnpm build:lib && pnpm build:example",
"build:lib": "pnpm --filter styled-css-base build",
"build:example": "pnpm --filter styled-css-base-example build",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx ."
},
"devDependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.30.4",
"@typescript-eslint/parser": "^5.30.4",
"eslint": "^8.19.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"npm-run-all": "^4.1.5",
"pnpm": "^7.5.0",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}