-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.66 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
{
"private": true,
"scripts": {
"build": "webpack --mode=production",
"build-dev": "webpack --mode=development",
"clean": "rm -rf dist",
"lint": "run-p lint:*",
"lint:css": "stylelint style/**/*.scss --fix",
"lint:js": "xo --fix",
"release:chrome": "cd dist && webstore upload --auto-publish",
"release:firefox": "cd dist && web-ext-submit",
"scripts": "tsc scripts/run-scripts.ts --outDir dist/scripts && node dist/scripts/run-scripts.js",
"test": "npm run lint && jest --coverage --silent",
"watch": "webpack --mode=development --watch"
},
"engines": {
"node": ">=13.0.0 <14.0.0"
},
"xo": {
"ignores": [
"dist"
],
"rules": {
"camelcase": [
"error",
{
"properties": "always"
}
],
"capitalized-comments": [
"off"
]
},
"settings": {
"import/resolver": {
"node": {},
"webpack": {}
}
}
},
"stylelint": {
"extends": "stylelint-config-xo",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"use",
"include"
]
}
],
"color-function-notation": null
}
},
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@tensorflow/tfjs": "^3.3.0",
"chart.js": "^2.9.4",
"defaults": "^1.0.3",
"node-sass": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-chartjs-2": "^2.11.1",
"react-dom": "^17.0.1",
"webextension-polyfill": "^0.7.0",
"webextension-polyfill-ts": "^0.24.0"
},
"devDependencies": {
"@material/button": "^11.0.0",
"@material/card": "^11.0.0",
"@tensorflow/tfjs-node": "^3.5.0",
"@types/enzyme": "^3.10.8",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.22",
"@types/jsdom": "^16.2.10",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-test-renderer": "^17.0.1",
"axios": "^0.21.1",
"chrome-webstore-upload-cli": "^1.2.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^5.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.14.0",
"html-webpack-plugin": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jsdom": "^16.5.3",
"material-icons": "^0.6.1",
"npm": "^7.11.1",
"npm-run-all": "^4.1.5",
"react-test-renderer": "^17.0.2",
"react-tooltip": "^4.2.17",
"sass": "^1.32.10",
"sass-loader": "^11.0.1",
"size-plugin": "^1.2.0",
"style-loader": "^2.0.0",
"stylelint": "^13.13.0",
"stylelint-config-xo": "^0.20.0",
"ts-jest": "^26.5.5",
"ts-loader": "^8.0.17",
"typescript": "^4.2.4",
"web-ext": "^5.5.0",
"web-ext-submit": "^5.5.0",
"webpack": "^5.24.2",
"webpack-cli": "^4.6.0",
"xo": "^0.38.1"
}
}