forked from awslabs/iot-app-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "iot-app-kit",
"private": true,
"description": "IoT Application Kit",
"version": "9.0.0",
"main": "index.js",
"license": "Apache-2.0",
"repository": "git@github.com:awslabs/iot-app-kit.git",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.7.0"
},
"workspaces": [
"examples/*",
"packages/*",
"configuration/*"
],
"scripts": {
"install-ws": "npm install --workspaces --include-workspace-root",
"bootstrap": "npm run install-ws && npm run build",
"start": "cd packages/components && npm start",
"build": "turbo run build",
"clean": "git clean -dxf -e /.idea -e /.vscode -e creds.json",
"dev": "turbo run dev",
"lint": "turbo run lint",
"fix": "turbo run fix && npm run fix:stylelint",
"fix:stylelint": "stylelint '**/*.css' --fix",
"test": "turbo run test",
"test:ui": "turbo run test:ui",
"test:stylelint": "stylelint '**/*.css' --max-warnings 0",
"test:git": "git diff --exit-code",
"release": "npm run build",
"pack": "turbo run pack",
"versionup:patch": "turbo run version --no-git-tag-version patch",
"versionup:minor": "turbo run version --no-git-tag-version minor",
"versionup:major": "turbo run version --no-git-tag-version major",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.5",
"@playwright/test": "^1.31.2",
"@swc/core": "^1.3.71",
"@swc/jest": "^0.2.26",
"@testing-library/dom": "^9.3.1",
"@testing-library/user-event": "^14.4.3",
"copy-webpack-plugin": "^5.0.4",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest-matcher-utils": "26.6.2",
"jest-raw-loader": "^1.0.1",
"npm-run-all": "^4.1.5",
"stylelint": "14.16.1",
"stylelint-config-standard": "25.0.0",
"turbo": "^1.10.3"
},
"npm-pretty-much": {
"useWorkspaces": true,
"runRelease": "release",
"runTest": "never",
"allowUnsafeName": "github repo"
},
"resolutions": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11"
}
}