-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
70 lines (70 loc) · 2.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "tezos-profiles",
"license": "Apache-2.0",
"version": "1.0.0",
"devDependencies": {
"@tsconfig/svelte": "^1.0.10",
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"autoprefixer": "^10.2.5",
"base64-loader": "^1.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"eslint": "^7.23.0",
"eslint-plugin-svelte3": "^3.1.2",
"mini-css-extract-plugin": "^1.5.1",
"postcss": "^8.2.8",
"postcss-load-config": "^3.0.1",
"postcss-loader": "^5.2.0",
"precss": "^4.0.0",
"prettier": "^2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"process": "^0.11.10",
"sass": "^1.35.1",
"sass-loader": "^12.1.0",
"svelte": "^3.31.2",
"svelte-check": "^1.0.46",
"svelte-loader": "^3.0.0",
"svelte-preprocess": "^4.7.0",
"tailwindcss": "^2.0.4",
"ts-loader": "^8.0.4",
"tslib": "^2.0.1",
"typescript": "^4.0.3",
"webassembly-loader": "^1.1.0",
"webpack": "^5.40.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@spruceid/tzprofiles": "^1.0.1",
"@taquito/beacon-wallet": "^13.0.1",
"@taquito/local-forging": "^13.0.1",
"@taquito/taquito": "^13.0.1",
"@taquito/tzip16": "^13.0.1",
"@taquito/utils": "^13.0.1",
"crypto-browserify": "^3.12.0",
"didkit-wasm": "^0.1.9",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"kepler-sdk": "^0.9.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.1.1",
"style-loader": "^2.0.0",
"svelte-navigator": "^3.1.5",
"url": "^0.11.0",
"uuid": "^8.3.2"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"dev": "webpack serve --static-directory public --port 9080",
"validate": "svelte-check",
"format": "prettier --write ./src/**/*.{js,svelte,html,ts}",
"lint": "eslint './src/**/*.{js,ts,svelte}'",
"lint:fix": "eslint --fix './src/**/*.{js,ts,svelte}'",
"prelint": "npm run format"
}
}