forked from wonderflow-bv/wanda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.31 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
{
"name": "wanda",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "[email protected]",
"homepage": "http://design-wonderflow.github.io/wanda",
"scripts": {
"prebuild": "copyright-header --fix --copyrightHolder \"Wonderflow <authored by Mattia Astorino>\" --include \"src\" --exclude \"apps/docs,.storybook,.d.ts,.stories.tsx\" --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": "turbo run test",
"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"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint",
"*.{css}": "stylelint"
},
"devDependencies": {
"@changesets/cli": "2.25.2",
"@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",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"@wonderflow/stylelint-config": "1.2.1",
"copyright-header": "0.4.6",
"eslint": "8.24.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-mdx": "2.0.5",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"gh-pages": "4.0.0",
"husky": "8.0.2",
"is-ci": "3.0.1",
"lint-staged": "13.0.3",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"stylelint-config-standard": "28.0.0",
"ts-node": "10.9.1",
"tsc-alias": "1.7.1",
"turbo": "1.5.5",
"typescript": "4.8.4",
"typescript-plugin-css-modules": "3.4.0",
"uvu": "0.5.6"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=14.0.0"
}
}