-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "@checkpoint-labs/console",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "bunx --bun vite",
"build": "bunx vue-tsc --noEmit && bunx --bun vite build",
"preview": "bunx --bun vite preview",
"lint": "bunx eslint . --ext .vue,.js,.ts --fix",
"lint:check": "bunx eslint . --ext .vue,.js,.ts",
"format": "bunx prettier --write .",
"format:check": "bunx prettier --check ."
},
"eslintConfig": {
"extends": "@snapshot-labs"
},
"prettier": "@snapshot-labs/prettier-config",
"dependencies": {
"starknet": "^5.24.3",
"vue": "^3.4.38",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@snapshot-labs/eslint-config": "^0.1.0-beta.21",
"@snapshot-labs/prettier-config": "^0.1.0-beta.19",
"@vitejs/plugin-vue": "^5.1.3",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.4.2",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^2.1.4"
}
}