-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 2.37 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
{
"name": "root",
"description": "Resources for building interfaces with WeWork's design system",
"private": true,
"author": "WeWork Companies Inc.",
"repository": "https://github.com/wework/ray",
"contributors": [
"Adam Raider <[email protected]>",
"Celeste Glavin <[email protected]>"
],
"workspaces": [
"packages/*"
],
"keywords": [
"wework",
"css",
"js",
"design-system"
],
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-typescript": "^7.6.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.18",
"@types/react-dom": "^16.9.0",
"@types/storybook__react": "^4.0.2",
"babel-eslint": "10.0.1",
"babel-jest": "^24.8.0",
"commitizen": "^3.0.7",
"coveralls": "3.0.3",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.2.0",
"eslint-plugin-import": "2.17.2",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.13.0",
"husky": "2.3.0",
"jest": "24.8.0",
"lerna": "3.13.4",
"lint-staged": "8.1.4",
"prettier": "1.16.4",
"stylelint": "^9.10.1"
},
"scripts": {
"dev": "lerna run dev --parallel",
"dev:core": "lerna run dev --scope=\"@wework/ray-core\" --parallel",
"dev:docs": "lerna run dev --scope=\"ray-website-gatsby\" --parallel",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"bootstrap": "npx lerna bootstrap",
"test": "jest",
"build": "npx lerna run build",
"clean": "rm -rf .out",
"lerna:test": "npx lerna run test --parallel",
"lerna:clean": "npx lerna run clean",
"lerna:publish": "npx lerna publish --yes",
"lerna:version": "npx lerna version --yes",
"site:build": "yarn clean && yarn build && npx lerna run netlify:build"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,scss}": [
"stylelint --fix",
"git add"
],
"*.{js,json,scss,css,md,html}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}