-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
92 lines (92 loc) · 3.43 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
{
"name": "@microsoft/atlas-design",
"version": "1.0.0",
"description": "The Atlas Design System used by Microsoft's Developer Relations platform.",
"private": true,
"homepage": "https://github.com/microsoft/atlas-design",
"scripts": {
"build:css": "npm run build --workspace=@microsoft/atlas-css",
"build:js": "npm run build --workspace=@microsoft/atlas-js",
"build:site": "npm run build --workspace=@microsoft/atlas-site",
"build:tokens": "npm run tokens --workspace=@microsoft/atlas-css",
"build:class-names": "npm run class-names --workspace=@microsoft/atlas-css",
"prebuild:class-names": "npm run build:css",
"codegen": "npm run codegen --workspace=@microsoft/atlas-integration",
"type-check": "npm run build:css && npm run type-check --workspace=@microsoft/atlas-site",
"prelint": "npm run build:tokens",
"lint": "npm run lint:css && npm run lint:site && npm run lint:js",
"lint:site": "npm run lint --workspace=@microsoft/atlas-site",
"lint:css": "npm run lint --workspace=@microsoft/atlas-css",
"prelint-fix": "npm run build:tokens",
"lint-fix": "npm run lint-fix:site && lint-fix:css",
"lint-fix:site": "npm run lint-fix --workspace=@microsoft/atlas-site",
"lint:js": "npm run lint --workspace=@microsoft/atlas-js",
"lint-fix:css": "npm run lint-fix --workspace=@microsoft/atlas-css",
"start": "npm run serve:site",
"serve:site": "npm run start --workspace=@microsoft/atlas-site",
"serve:css": "npm run start --workspace=@microsoft/atlas-css",
"screenshots:light": "npm run screenshots:light --workspace=@microsoft/atlas-integration",
"screenshots:all": "npm run screenshots:all --workspace=@microsoft/atlas-integration",
"integration": "npm run test --workspace=@microsoft/atlas-integration",
"integration:debug": "npm run test:debug --workspace=@microsoft/atlas-integration",
"show-report": "npm run show-report --workspace=@microsoft/atlas-integration",
"toc": "npm run toc --workspace=@microsoft/atlas-site",
"prettier": "prettier --write \"**/*.{scss,ts,js,json,yml,md}\"",
"prettier-check": "prettier --check \"**/*.{scss,ts,js,json,yml}\" --loglevel debug",
"pretty-quick": "pretty-quick --staged --pattern \"**/*.{scss,ts,js,json,yml}\"",
"prestart": "npm run build:tokens",
"prebuild:site": "npm run build:tokens",
"publish:extension": "npm run prepare:extension && npm run vsce:publish -w atlas-design-system-tools",
"publish:extension:dryrun": "npm run prepare:extension && npm run vsce:publish:dryrun -w atlas-design-system-tools",
"release": "npx changeset publish",
"prepare:extension": "npm run build:css & npm run build:site"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/atlas-design"
},
"workspaces": {
"packages": [
"css",
"plugins/parcel-transformer-markdown-html",
"plugins/stylelint-config-atlas",
"site",
"js",
"integration",
"extension"
]
},
"installConfig": {
"pnp": false
},
"keywords": [
"microsoft",
"atlas",
"design-system",
"css",
"scss"
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@playwright/test": "^1.35.1",
"husky": "4.3.8",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretty-quick",
"pre-push": "npm run lint"
}
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "auto"
},
"author": "Microsoft Corporation",
"license": "MIT"
}