-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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
{
"name": "components-web",
"private": true,
"description": "Inhouse Components Web",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"scripts": {
"start": "lerna run start --stream",
"watch": "lerna run watch --stream",
"build": "npm run clean && npm run compile",
"clean": "rm -rf dist",
"compile": "lerna run build --stream",
"deploy": "gh-pages -d dist",
"lint": "npm run lint:style && npm run lint:script",
"lint:style": "stylelint {,**/}*.scss",
"lint:style:fix": "npm run lint:style -- --fix",
"lint:script": "eslint . --ext ts,tsx",
"test": "bash scripts/test.sh",
"vrt": "reg-suit run",
"changelog": "ts-node scripts/create_changelog.ts",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@gyugyu/assert-sass": "0.1.2",
"@gyugyu/sassunit": "0.2.0",
"@octokit/graphql": "5.0.5",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"eslint": "8.47.0",
"eslint-plugin-react": "7.32.2",
"gh-pages": "5.0.0",
"lerna": "^8.1.2",
"reg-keygen-git-hash-plugin": "0.12.1",
"reg-notify-github-with-api-plugin": "0.12.1",
"reg-publish-s3-plugin": "0.12.1",
"reg-suit": "^0.14.3",
"rimraf": "^5.0.1",
"sass": "1.62.1",
"stylelint": "14.16.1",
"stylelint-config-rational-order": "npm:stylelint-config-rational-order-fix@^0.1.9",
"stylelint-config-standard-scss": "2.0.1",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"workspaces": [
"packages/*"
]
}