-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.12 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
{
"name": "filigrane-browser-extension",
"version": "0.1.0",
"description": "My Chrome Extension",
"private": true,
"scripts": {
"watch": "node ./node_modules/webpack/bin/webpack.js --mode=development --watch --config config/webpack.config.js",
"build": "node ./node_modules/webpack/bin/webpack.js --mode=production --config config/webpack.config.js"
},
"devDependencies": {
"@types/chrome": "^0.0.248",
"@types/file-saver": "^2.0.7",
"axios": "^1.5.1",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^6.8.1",
"eslint-config-prettier": "^9.x",
"eslint-plugin-import": "^2.x",
"eslint-plugin-prettier": "^4.x",
"eslint-plugin-simple-import-sort": "^10.x",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^0.10.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"size-plugin": "^2.0.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"downloadjs": "^1.4.7",
"file-saver": "^2.0.5",
"picnic": "^7.1.0"
}
}