forked from looker-open-source/components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.41 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.41 KB
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
{
"name": "monorepo",
"license": "MIT",
"author": "Looker",
"private": true,
"workspaces": [
"packages/*"
],
"homepage": "http://components.looker.com",
"repository": {
"type": "git",
"url": "git+https://github.com/looker-open-source/components.git"
},
"bugs": {
"url": "https://github.com/looker-open-source/components/issues"
},
"engines": {
"node": ">=12",
"yarn": ">=1.14.0"
},
"scripts": {
"build": "yarn lerna run 'build:all'",
"postbuild": "run-p -c 'lint'",
"develop": "npm-run-all build develop:components sleep --parallel develop:server develop:playground develop:www",
"develop:components": "yarn workspace @looker/components develop &",
"develop:playground": "yarn workspace playground develop",
"develop:server": "yarn workspace server develop",
"develop:www": "yarn workspace www develop",
"deploy": "yarn workspace www deploy",
"fix": "run-p -c 'lint:ts-* --fix'",
"lint": "run-p -c lint:*",
"lint:css": "stylelint 'packages/**/*.ts{,x}'",
"lint:es": "eslint 'packages/**/*.ts{,x}'",
"lint:mdx": "yarn workspace www lint",
"lint:ts": "tsc",
"lint-staged": "yarn exec lint-staged",
"npmrc": "bin/create_npmrc.sh",
"npmrc:clean": "rm .npmrc",
"prepare": "yarn build",
"prepublishOnly": "yarn test",
"sleep": "sleep 10",
"test": "yarn jest"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.7",
"@looker/eslint-config": "^1.0.11",
"@looker/prettier-config": "^1.0.6",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.1",
"@types/react-test-renderer": "^16.9.2",
"babel-core": "^7.0.0-bridge",
"babel-loader": "^8.0.5",
"babel-plugin-styled-components": "^1.10.7",
"core-js": "^3.6.4",
"css-loader": "^3.4.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"jest-canvas-mock": "^2.2.0",
"jest-styled-components": "^6.3.4",
"lerna": "^3.20.2",
"lint-staged": "^10.0.8",
"npm-run-all": "^4.1.5",
"pre-commit": "1.2.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"style-loader": "^1.1.3",
"styled-components": "^4.4.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"ttypescript": "^1.5.10",
"typescript": "^3.8.3",
"typescript-plugin-styled-components": "^1.4.4",
"webpack": "^4.42.0"
},
"resolutions": {
"acorn": ">=6.4.1"
},
"lint-staged": {
"**/*.ts?(x)": [
"stylelint",
"prettier --write",
"eslint",
"git add"
],
"**/*.js?(x)": [
"prettier --write",
"git add"
]
},
"pre-commit": [
"lint-staged"
],
"dependencies": {
"react-live": "^2.2.2",
"react-test-renderer": "^16.13.0"
},
"eslintConfig": {
"extends": [
"@looker/eslint-config/workspaces"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
},
"prettier": "@looker/prettier-config",
"stylelint": {
"extends": "@looker/eslint-config/stylelint"
}
}