-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.75 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
{
"name": "@ui-js/chromatic",
"version": "0.8.4",
"description": "A build system for managing cross-platform design systems using design tokens.",
"publishConfig": {
"access": "public"
},
"keywords": [
"design tokens",
"design system",
"ui",
"theo",
"build system",
"css",
"sass",
"less",
"stylus",
"iOS",
"Android",
"style guide"
],
"license": "MIT",
"files": [
"bin/**"
],
"engines": {
"node": ">=16.14.2"
},
"devDependencies": {
"@cortex-js/prettier-config": "^1.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.6.3"
},
"dependencies": {
"chalk": "4.1.2",
"chokidar": "^3.5.3",
"chroma-js": "^2.4.2",
"ci-info": "^3.3.0",
"color": "^4.2.1",
"color-name": "^1.1.4",
"cosmiconfig": "^7.0.1",
"fs-extra": "^10.0.1",
"glob": "^7.2.0",
"handlebars": "^4.7.7",
"highlight.js": "^11.5.0",
"json5": "^2.2.1",
"marked": "^4.0.12",
"please-upgrade-node": "^3.2.0",
"resolve-from": "^5.0.0",
"string-similarity": "^4.0.4",
"update-notifier": "^5.1.0",
"yaml": "^1.10.2",
"yargs": "^17.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ui-js/chromatic.git"
},
"bin": {
"chromatic": "./bin/chromatic"
},
"scripts": {
"build": "bash ./scripts/build.sh dev",
"build:prod": "bash ./scripts/build.sh production",
"chromatic": "node ./bin/chromatic",
"clean": "bash ./scripts/clean.sh",
"coverage": "bash ./scripts/test.sh coverage",
"lint": "prettier --ignore-path ./.prettierignore --write \"**/*.{ts,js,css,md,yml,json}\" \"!vendor/**\"",
"snapshot": "bash ./scripts/test.sh snapshot",
"test": "bash ./scripts/test.sh",
"watch": "rollup --config ./config/rollup.config.js --watch"
},
"prettier": "@cortex-js/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"git add"
],
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"roots": [
"<rootDir>/test",
"<rootDir>/bin"
],
"coverageReporters": [
"lcov"
],
"coverageDirectory": "./coverage"
}
}