-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
107 lines (107 loc) · 3.88 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@itsjonq/g2",
"version": "0.0.0",
"description": "G2",
"sideEffects": false,
"private": true,
"scripts": {
"postinstall": "npm run bootstrap",
"clean": "lerna run clean --ignore website --stream --parallel; tsc --build --clean",
"prestart": "zero prestart && npm run bootstrap",
"prebuild": "npm run clean",
"build": "BUILD_RUNTIME=true lerna run build --ignore website --stream --parallel && tsc --build",
"bootstrap": "lerna bootstrap --use-workspaces",
"bootstrap:tooling": "npm install --prefix tooling/vscode-snippets",
"lint:eslint": "eslint \"./packages/**/*.js\" --fix",
"lint:css": "stylelint './packages/components/src/**/*.js'",
"lint": "zero lint && npm run lint:eslint && npm run lint:css",
"start": "npm run storybook",
"docs:generate": "yarn --cwd ./packages/website generate:props && node scripts/generateComponentReadMe.js",
"dev": "zero test",
"test": "zero test --coverage",
"test:coverage": "zero test --coverage",
"format": "zero format",
"validate": "zero validate",
"publish": "lerna publish",
"snippets:publish": "npm run release --prefix tooling/vscode-snippets",
"website": "yarn website:start",
"website:start": "yarn --cwd ./packages/website start",
"website:build": "yarn --cwd ./packages/website generate",
"website:serve": "yarn --cwd ./packages/website serve",
"website:docs": "yarn --cwd ./packages/website generate:scripts",
"website:test": "yarn website:build && yarn website:serve",
"website:deploy": "git push origin main:website --force",
"version": "npm run build",
"precommit": "zero pre-commit",
"storybook": "start-storybook -p 6006",
"prebuild-storybook": "npm run build",
"build-storybook": "build-storybook -o dist/storybook",
"remake:component": "remake component --output=packages/components/src",
"remake": "npm run remake:component",
"bump": "lerna version",
"postbump": "git push origin main:release --force"
},
"author": "Jon Quach <hello@jonquach.com> (https://jonquach.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/itsjonq/g2.git"
},
"bugs": {
"url": "https://github.com/itsjonq/g2/issues"
},
"homepage": "https://github.com/itsjonq/g2#readme",
"keywords": [],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.3",
"@helpscout/stats": "^0.0.5",
"@itsjonq/controls": "0.0.9",
"@itsjonq/is": "^0.0.5",
"@itsjonq/remake": "2.0.0",
"@itsjonq/zero": "4.1.10",
"@lerna/filter-options": "^3.20.0",
"@storybook/addon-actions": "^6.1.2",
"@storybook/addon-links": "^6.1.2",
"@storybook/addons": "^6.1.2",
"@storybook/react": "^6.1.2",
"@testing-library/jest-dom": "5.11.4",
"@testing-library/react": "10.4.9",
"@types/rtlcss": "^2.4.1",
"@types/styled-components": "^5.1.4",
"@types/tinycolor2": "^1.4.2",
"@types/wordpress__data": "^4.6.9",
"@wordpress/data": "^4.26.1",
"@wordpress/i18n": "^3.17.0",
"@wordpress/icons": "^2.9.0",
"@wordpress/is-shallow-equal": "^3.0.0",
"among": "2.0.0",
"babel-loader": "^8.1.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-better-styled-components": "1.1.2",
"eslint-plugin-react": "7.20.3",
"eslint-plugin-simple-import-sort": "5.0.3",
"eslint-plugin-sort-destructure-keys": "1.3.5",
"eslint-plugin-sort-keys-fix": "1.1.1",
"faker": "4.1.0",
"faker-schema": "1.0.2",
"fast-glob": "^3.2.4",
"fs-extra": "9.0.1",
"jest-environment-jsdom-sixteen": "^1.0.3",
"lerna": "^3.20.2",
"lodash": "^4.17.19",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"stylelint": "13.11.0",
"stylelint-config-standard": "20.0.0",
"typescript": "^4.0.5",
"yup": "0.29.3",
"zustand": "^3.3.1"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
]
}