-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "@metal-heaven/rh24-webapp-sdk",
"version": "2.0.3",
"description": "Rh24 webapp integration library",
"files": [
"dist/**/*"
],
"main": "dist/rh24-webapp-sdk.js",
"typings": "dist/rh24-webapp-sdk.d.ts",
"scripts": {
"build": "npx webpack --mode production",
"format": "npx prettier --write \"src/**/*.ts\"",
"lint": "npx eslint -c .eslintrc.js \"src/**/*.ts\" --fix",
"test": "jest --config jest.json",
"watch-build": "tsc --watch",
"watch-test": "jest --watch --config jest.json",
"prepare": "npm run build && npm run test",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/Rhodium24/rh24-webapp-sdk"
},
"keywords": [
"Rhodium24",
"Rh24",
"SheetMetal",
"SmartIndustry"
],
"author": "Metal Heaven - B.V <info@metal-heaven.com> (https://metal-heaven.com)",
"license": "",
"devDependencies": {
"@mui/material": "^5.0.6",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"clean-webpack-plugin": "^4.0.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-webpack": "^0.5.1",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}