-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "float-webpack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:contentscript-background": "cross-env NODE_ENV=production webpack --config webpack.config.js -w",
"build": "npm run build:contentscript-background",
"watch:contentscript-background": "cross-env NODE_ENV=development webpack --config webpack.config.js -w",
"watch": "npm-run-all --parallel build:*",
"clean": "node clean.js",
"prebuild": "npm run clean",
"prewatch": "npm run clean",
"zip": "cd dist && bestzip ../Float.zip *"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chrome": "^0.0.211",
"@types/node": "^18.11.18",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "^2.2.1",
"cpy-cli": "^4.2.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"mini-css-extract-plugin": "^2.7.2",
"npm-run-all": "^4.1.5",
"style-loader": "^3.3.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@splinetool/react-spline": "^2.2.5",
"@splinetool/runtime": "^0.9.210",
"axios": "^1.3.1",
"fs-extra": "^11.1.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"urql": "^3.0.3"
}
}