-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.63 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
{
"name": "aesthetic-framework",
"private": true,
"version": "0.0.0",
"scripts": {
"aesthetic": "node ./packages/cli/lib/bin.js",
"prepare": "beemo typescript:sync-project-refs && beemo create-config",
"build": "packemon build --addEngines",
"pack": "NODE_ENV=production packemon pack --addEngines --declaration=standard",
"clean": "packemon clean",
"check": "yarn run type && yarn run test && yarn run lint",
"format": "beemo prettier",
"ds:aesthetic": "yarn run aesthetic compile aesthetic ./packages/design-systems/src/aesthetic --format web-tsx",
"ds:material": "yarn run aesthetic compile material ./packages/design-systems/src/material --format web-tsx",
"generate:ds": "yarn run ds:aesthetic && yarn run ds:material",
"generate:prefix": "node ./scripts/generatePrefixData.mjs",
"lint": "beemo eslint",
"test": "beemo jest",
"coverage": "yarn run test --coverage",
"type": "beemo typescript --build",
"release": "lerna publish",
"prerelease": "yarn run pack && yarn run check"
},
"engines": {
"node": ">=12.17.0"
},
"devDependencies": {
"@beemo/cli": "^2.0.1",
"@beemo/core": "^2.0.1",
"@beemo/dev": "^1.3.1",
"@types/ejs": "^3.0.7",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/prettier": "^2.3.2",
"@types/react": "^16.14.11",
"@types/string-hash": "^1.1.1",
"benchmark": "^2.1.4",
"builtin-modules": "^3.2.0",
"caniuse-api": "^3.0.0",
"conventional-changelog-beemo": "^2.1.0",
"lerna": "^4.0.0",
"packemon": "^1.2.0"
},
"workspaces": [
"packages/*"
]
}