-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.83 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.83 KB
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
{
"name": "cloud_marks",
"version": "0.3.2",
"description": "",
"main": "index.js",
"scripts": {
"watch": "./node_modules/.bin/webpack --watch --mode=development --devtool=inline-source-map",
"build:prod": "./node_modules/.bin/webpack --mode=production && cp manifests/manifest.firefox.production.json dist/manifest.json",
"build:dev": "./node_modules/.bin/webpack --mode=development --devtool=inline-source-map && cp manifests/manifest.firefox.development.json dist/manifest.json",
"release": "npm run build:prod && rm -fr release/* && cp manifests/manifest.firefox.production.json manifest.json && zip -r release/firefox-submit.zip src package.json manifest.json tsconfig.json webpack.config.js && rm manifest.json && cp -r dist release/firefox && cd release/firefox && zip -r ../firefox.zip ./*",
"clean": "rm -fr dist/js/* dist/manifest.json release/*"
},
"author": "xia@silvia.com",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.609.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.16.0",
"@mui/lab": "^5.0.0-alpha.171",
"@mui/material": "^5.16.0",
"class-transformer": "0.5.1",
"js-sha256": "^0.11.0",
"prop-types": "^15.7.2",
"qs": "^6.12.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"url-join": "^5.0.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@types/firefox-webext-browser": "^120.0.4",
"@types/qs": "^6.9.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/url-join": "^4.0.3",
"babel-loader": "^9.1.3",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
}
}