forked from awslabs/iot-app-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·116 lines (116 loc) · 3.77 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
115
116
{
"name": "iot-app-kit",
"private": true,
"description": "IoT Application Kit",
"version": "2.6.5",
"main": "index.js",
"license": "Apache-2.0",
"repository": "[email protected]:awslabs/iot-app-kit.git",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.7.0"
},
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"start": "cd packages/components && npm start",
"bootstrap": "npm install && npm run build",
"build": "turbo run build --filter='./packages/*'",
"clean": "git clean -dxf -e /.idea -e /.vscode -e creds.json",
"dev": "turbo run dev",
"fix": "npm-run-all -p fix:eslint fix:stylelint",
"fix:eslint": "eslint --fix --ext .js,.ts,.tsx .",
"fix:stylelint": "stylelint '**/*.css' --fix",
"test": "npm-run-all -p test:unit test:eslint test:stylelint test:git",
"test:integration": "turbo run test:integration",
"test:ui": "turbo run test:ui",
"test:eslint": "eslint --ext .js,.ts,.tsx . --max-warnings=40",
"test:stylelint": "stylelint '**/*.css' --max-warnings 0",
"test:unit": "turbo run test",
"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"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@jest/core": "26.6.3",
"@testing-library/dom": "^7.22.2",
"@testing-library/user-event": "^12.1.1",
"@types/classnames": "^2.2.9",
"@types/color": "^3.0.1",
"@types/color-string": "^1.5.0",
"@types/cypress-image-snapshot": "^3.1.6",
"@types/d3": "^6.7.0",
"@types/jest": "26.0.24",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.isnumber": "^3.0.6",
"@types/lodash.round": "^4.0.6",
"@types/lodash.throttle": "^4.1.6",
"@types/lodash.uniq": "^4.5.6",
"@types/lodash.uniqby": "^4.7.6",
"@types/puppeteer": "^1.20.2",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"color": "^3.1.2",
"color-string": "^1.5.3",
"copy-webpack-plugin": "^5.0.4",
"cypress": "^6.9.1",
"cypress-image-snapshot": "^4.0.1",
"cypress-shadow-dom": "^1.3.0",
"d3-color-1-fix": "^1.4.2",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-formatjs": "3.0.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "26.6.3",
"jest-cli": "26.6.3",
"jest-environment-node": "26.6.2",
"jest-extended": "^0.11.2",
"jest-matcher-utils": "26.6.2",
"jest-raw-loader": "^1.0.1",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"nth-check": "^2.1.1",
"query-string": "^6.13.5",
"stylelint": "14.8.2",
"stylelint-config-standard": "25.0.0",
"ts-jest": "26.5.6",
"ts-loader": "9.2.6",
"ts-node": "^10.0.0",
"turbo": "^1.7.2",
"webpack": "^4.41.2",
"write-file-webpack-plugin": "^4.5.0"
},
"npm-pretty-much": {
"useWorkspaces": true,
"runRelease": "release",
"runTest": "never",
"allowUnsafeName": "github repo"
},
"resolutions": {
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2"
},
"overrides": {
"d3-color": "npm:d3-color-1-fix@^1.4.2",
"nth-check": "^2.1.1"
}
}