-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.38 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
{
"name": "alloctrl",
"version": "0.1.9",
"type": "module",
"license": "BSD-3-Clause",
"module": "./build/index.js",
"files": [
"/build",
"/bin",
".env.example"
],
"bin": {
"alloctrl": "bin/index.js"
},
"engines": {
"node": ">= 16"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"prepack": "npm run build",
"start": "node -r dotenv/config ./build"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@sveltejs/adapter-node": "^1.2.4",
"@sveltejs/kit": "^1.20.1",
"@types/lodash": "^4.14.184",
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"algosdk": "^2.4.0",
"eslint": "^8.16.0",
"eslint-plugin-svelte3": "^4.0.0",
"sass": "^1.54.4",
"tslib": "^2.6.0",
"typescript": "^5.1.5",
"vite": "^4.3.9"
},
"dependencies": {
"algostack": "^0.4.13",
"axios": "^1.1.3",
"buffer": "^6.0.3",
"camelcase-keys": "^8.0.2",
"chalk": "^5.3.0",
"dotenv": "^16.3.1",
"inquirer": "^9.2.7",
"inquirer-directory": "^2.2.0",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"lodash-es": "^4.17.21",
"svelte": "^3.56.0",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^5.0.4"
}
}