-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
86 lines (86 loc) · 2.9 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "wanda",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "npm@8.3.1",
"homepage": "http://design-wonderflow.github.io/wanda",
"scripts": {
"prebuild": "copyright-header --fix --copyrightHolder \"Wonderflow Design Team\" --include \"src\" --exclude \"apps/docs,.storybook,.d.ts,.stories.tsx,.test.tsx,.test.ts\" --templateId \"apache\"",
"prebuild:apps": "graphql-codegen --config codegen.yml",
"build": "turbo run build",
"build:nocache": "turbo run build --force",
"build:apps": "turbo run build:next",
"start": "run-s codegen && turbo run start --parallel",
"lint": "turbo run lint",
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"release": "changeset publish",
"prepare": "is-ci || husky install",
"update:deps": "npx npm-upgrade-monorepo",
"change": "changeset",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "graphql-codegen --watch --config codegen.yml",
"deploy:storybook": "turbo run deploy:storybook",
"test:storybook": "turbo run test:storybook"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint",
"*.{css}": "stylelint"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/preset-env": "7.24.4",
"@babel/preset-react": "7.24.1",
"@babel/preset-typescript": "7.24.1",
"@changesets/cli": "2.27.1",
"@graphql-codegen/cli": "2.13.11",
"@graphql-codegen/typescript": "2.8.1",
"@graphql-codegen/typescript-operations": "2.5.6",
"@graphql-codegen/typescript-react-apollo": "3.3.6",
"@lasalefamine/eslint-config": "2.0.7",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"@wonderflow/stylelint-config": "1.2.1",
"babel-jest": "29.7.0",
"copyright-header": "0.4.6",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-mdx": "2.0.5",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"gh-pages": "4.0.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"is-ci": "3.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"stylelint-config-standard": "28.0.0",
"ts-node": "10.9.2",
"tsc-alias": "1.8.8",
"turbo": "1.13.0",
"typescript": "4.8.4",
"typescript-plugin-css-modules": "3.4.0"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0"
}
}