-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 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
{
"name": "mockbuster",
"version": "1.0.0",
"main": "index.js",
"author": "Patrick McLennan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@swc/core": "^1.3.92",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@wasm-tool/wasm-pack-plugin": "^1.7.0",
"bootstrap": "^5.3.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"expose-loader": "^4.1.0",
"mini-css-extract-plugin": "^2.7.6",
"popper.js": "^1.16.1",
"postcss-loader": "^7.3.3",
"prettier": "^3.2.5",
"sass": "^1.69.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"swc-loader": "^0.2.3",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"scripts": {
"compile::dev::watch": "NODE_ENV=development webpack --config ./webpack.js --watch",
"compile::dev": "NODE_ENV=development webpack --config ./webpack.js",
"compile::prod": "NODE_ENV=production webpack --config ./webpack.js"
}
}