-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 2.35 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
{
"name": "canvas-tokens",
"description": "Canvas design token infrastructure",
"version": "0.0.0",
"license": "CC-BY-ND-4.0",
"author": "Workday, Inc. (https://www.workday.com)",
"contributors": [],
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/workday/canvas-tokens"
},
"scripts": {
"commit": "git-cz",
"build:tokens": "nx build @workday/canvas-tokens",
"clean:tokens": "nx clean @workday/canvas-tokens-web",
"lint": "eslint -c ./.eslintrc.js --ext=ts .",
"precommit": "lint-staged",
"prepare": "husky install",
"storybook": "nx storybook @workday/canvas-tokens-docs",
"build-storybook": "nx build-storybook @workday/canvas-tokens-docs",
"serve-storybook": "npx http-server docs/storybook/@workday/canvas-tokens-docs",
"test": "jest -c jest.config.ts",
"tokens-config": "ts-node scripts/tokens-config",
"typecheck": "tsc -p . --noEmit",
"prerelease": "yarn clean:tokens && yarn build:tokens",
"release": "changeset publish --access public --tags latest"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@nx/js": "16.7.4",
"@nx/react": "^16.7.4",
"@nx/storybook": "^16.7.4",
"@nx/vite": "16.7.4",
"@octokit/openapi-types": "^18.0.0",
"@octokit/rest": "^18.12.0",
"@storybook/addon-essentials": "7.4.0",
"@storybook/core-server": "7.4.0",
"@storybook/react-vite": "7.4.0",
"@types/jest": "^29.5.2",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"chromatic": "^7.2.0",
"commander": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.3.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nx": "16.1.2",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4",
"vite": "~4.5.5"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}