-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
75 lines (75 loc) · 2.49 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
{
"name": "node-dashboard",
"description": "Dashboard for Nodes",
"version": "2.0.0-rc.1",
"author": "Martyn Janes <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/iotaledger/node-dashboard"
},
"homepage": "/dashboard",
"license": "MIT",
"dependencies": {
"@iota/crypto.js": "^1.8.6",
"@iota/util.js": "^1.8.6",
"classnames": "^2.3.1",
"humanize-duration": "^3.27.3",
"moment": "^2.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^5.2.0",
"vivagraphjs": "^0.12.0"
},
"engines": {
"node": ">=14 <=16.16"
},
"scripts": {
"start": "cross-env PORT=9090 REACT_APP_BRAND_ID=iota-core craco start",
"lint": "eslint src --fix --ext .tsx,.ts",
"sass-lint": "stylelint ./src/**/*.scss --custom-syntax postcss-scss",
"build-internal": "craco build",
"build": "cross-env REACT_APP_BRAND_ID=iota-core run-s lint sass-lint build-internal",
"test": "craco test",
"eject": "react-scripts eject"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@craco/craco": "^7.0.0-alpha.7",
"@types/classnames": "^2.3.1",
"@types/humanize-duration": "^3.25.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-helmet": "^6.1.1",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"buffer": "^6.0.3",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-unicorn": "^43.0.2",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.5",
"react-scripts": "^5.0.1",
"sass": "^1.55.0",
"stylelint": "^14.12.1",
"stylelint-config-property-sort-order-smacss": "^9.0.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-scss": "7.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard": "^28.0.0",
"stylelint-scss": "^4.0.0",
"typescript": "^4.9.4"
},
"overrides": {
"@svgr/webpack": "^6.3.1"
}
}