-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "srspass",
"version": "0.3.0",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0 <7.0.0"
},
"devDependencies": {
"jest": "^26.6.3",
"webpack-dev-server": "^3.11.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "webpack-dev-server --client-log-level debug --content-base public --port 5000 --host 0.0.0.0",
"nsinstall": "npm install --ignore-scripts",
"release": ".github/release.sh",
"test": "jest"
},
"dependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/preset-env": "^7.14.0",
"argon2-browser": "^1.15.2",
"babel-loader": "^8.2.2",
"base64-loader": "^1.0.0",
"bip39": "^3.0.2",
"bs58check": "^2.1.2",
"cbor": "^5.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.1.1",
"cross-env": "^5.2.0",
"css-loader": "^5.2.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"jsbi": "^3.1.4",
"mini-css-extract-plugin": "^1.6.0",
"ramda": "^0.27.1",
"style-loader": "^0.23.1",
"svelte": "^3.0.0",
"svelte-loader": "^2.13.6",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.0",
"workbox-webpack-plugin": "^6.1.5",
"worker-loader": "^3.0.2"
}
}