forked from Ripe/algovanity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 807 Bytes
/
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
{
"name": "algovanity",
"private": true,
"devDependencies": {
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"svelte": "^3.38.1",
"svelte-loader": "^3.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^3.0.8"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "webpack serve --content-base public",
"precommit": "lint-staged"
},
"dependencies": {
"algosdk": "^1.9.1",
"qrcode": "^1.4.4"
},
"lint-staged": {
"*.{js,json,css,html,md,svelte}": [
"prettier --write",
"git add"
]
}
}