-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
121 lines (121 loc) · 4.53 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"private": true,
"scripts": {
"start": "echo \"\n👋 New to Thumbprint? Take a look at our 'CONTRIBUTING.md' for tips!\n\" && yarn run bootstrap && echo \"\nℹ️ Need a hand? Reach out on #design-systems for help.\n\" && yarn workspace www start",
"start:ssr": "yarn run build:docs && yarn workspace www serve",
"updated": "lerna updated",
"bootstrap": "yarn install && lerna run prepublishOnly",
"publish": "git checkout master && git pull && yarn && yarn verify && yarn build:dist && lerna publish",
"build:docs": "yarn run bootstrap && yarn workspace www build",
"build:dist": "lerna exec -- rm -rf dist .cache && yarn run bootstrap",
"pretty": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,json,md,mdx,html}\" --write",
"test": "TZ=America/Los_Angeles jest",
"test:watch": "yarn run bootstrap && yarn test --watch",
"prettier-check": "prettier \"**/*.{ts,tsx,js,jsx,css,scss,json,md,mdx,html}\" --check",
"lint": "yarn lint:css && yarn lint:js",
"lint:css": "stylelint \"**/*.scss\" \"**/*.css\" --ignore-path .gitignore",
"lint:js": "eslint . --ignore-path .gitignore --ext .jsx,.js,.tsx,.ts",
"typecheck": "tsc --project tsconfig.json",
"verify": "yarn run bootstrap && yarn lint && yarn test && yarn prettier-check && yarn typecheck"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/classnames": "^2.2.9",
"@types/enzyme": "^3.10.3",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.138",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/warning": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-external-helpers": "^6.22.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^2.0.4",
"folder-hash": "^3.0.0",
"fs-extra": "^8.1.0",
"gatsby-plugin-typescript": "^2.1.9",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.0.0",
"lerna": "^5.1.4",
"postinstall-postinstall": "^2.0.0",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"sass": "^1.49.9",
"stylelint": "^11.0.0",
"stylelint-config-prettier": "^5.2.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.11.0",
"tslib": "^1.10.0",
"typescript": "^3.9.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thumbtack/thumbprint.git"
},
"engines": {
"node": "16.x"
},
"keywords": [
"thumbtack",
"thumbprint",
"ui-library",
"design-system"
],
"author": "Tom Genoni <[email protected]>",
"contributors": [
{
"name": "Daniel O'Connor",
"email": "[email protected]",
"url": "https://danoc.me/"
},
{
"name": "Giles Lavelle"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thumbtack/thumbprint/issues"
},
"homepage": "https://github.com/thumbtack/thumbprint#readme",
"workspaces": [
"packages/*",
"next",
"www"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"packageManager": "[email protected]"
}