-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"private": true,
"type": "module",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.prod.js && NODE_ENV=production npm run test",
"watch": "NODE_ENV=development webpack --config webpack.dev.js --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"@popperjs/core": "^2.11.7",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.1",
"idb-keyval": "^6.2.0",
"webpack-merge": "^5.8.0"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^11.0.0",
"postcss-loader": "^7.1.0",
"puppeteer": "^23.11.1",
"raw-loader": "^4.0.2",
"sass": "^1.60.0",
"sass-loader": "^13.2.2",
"selfsigned": "^2.4.1",
"style-loader": "^3.3.2",
"webpack": "5.94.0",
"webpack-cli": "^4.10.0"
}
}