-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 3.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
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
{
"name": "privacy-pioneer",
"version": "1.2.1",
"jest": {
"setupFiles": [
"fake-indexeddb/auto",
"<rootDir>config.js"
]
},
"scripts": {
"prestart": "rimraf dev",
"start": "concurrently -k npm:dev:frontend npm:dev:background npm:dev:extension",
"dev:frontend": "webpack serve --config-name frontend --mode development",
"dev:background": "webpack --watch --config-name background --mode development",
"dev:extension": "wait-on ./dev/manifest.json && cd dev && web-ext run --watch-file bundle.background.js --start-url about:debugging#/runtime/this-firefox",
"prebuild": "rimraf dist",
"build": "webpack -c webpack.config.babel.js --mode production",
"test": "jest"
},
"repository": "https://github.com/privacy-tech-lab/privacy-pioneer",
"license": "MIT",
"eslintConfig": {
"extends": "react-app",
"env": {
"webextensions": true
}
},
"dependencies": {
"@babel/traverse": "^7.23.2",
"@popperjs/core": "^2.11.8",
"@tensorflow/tfjs": "^3.20.0",
"@tensorflow/tfjs-node": "^4.20.0",
"@types/psl": "^1.1.3",
"ansi-html": "^0.0.9",
"ansi-regex": "^6.0.1",
"async": "^3.2.4",
"axios": "^1.7.4",
"bootstrap": "^5.0.0",
"framer-motion": "^4.0.3",
"glob-parent": "^6.0.2",
"google-libphonenumber": "^3.2.19",
"got": "^12.5.1",
"idb": "^6.0.0",
"json-schema": "^0.4.0",
"jsonwebtoken": "^9.0.0",
"loader-utils": "^3.2.1",
"markdown-it": "^13.0.1",
"marked": "^4.0.18",
"node-forge": "^1.3.1",
"psl": "^1.9.0",
"queue": "^6.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-joyride": "^2.3.1",
"react-loading-skeleton": "^2.2.0",
"react-router-dom": "^5.2.0",
"react-spinners": "^0.11.0",
"react-tooltip": "^4.2.21",
"shell-quote": "^1.7.3",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/helper-define-polyfill-provider": "^0.4.3",
"@babel/plugin-transform-runtime": "^7.23.2",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.12.13",
"@babel/register": "^7.13.8",
"@babel/runtime": "^7.13.10",
"@emotion/babel-plugin": "^11.3.0",
"babel-loader": "^8.2.2",
"babel-plugin-polyfill-corejs2": "^0.4.6",
"babel-plugin-polyfill-corejs3": "0.8.5",
"babel-plugin-polyfill-es-shims": "^0.10.0",
"babel-plugin-polyfill-regenerator": "^0.5.3",
"concurrently": "^6.0.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"fake-indexeddb": "^4.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^29.0.2",
"rimraf": "^3.0.2",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"wait-on": "^7.2.0",
"web-ext": "^8.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.11.1"
},
"resolutions": {
"ws": "^8.17.1"
},
"babel": {
"presets": [
"@babel/preset-react",
"@babel/preset-env"
],
"plugins": [
"@emotion",
"@babel/plugin-transform-runtime"
]
}
}