-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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
{
"name": "spline",
"version": "0.0.0",
"description": "Yield farming and more on L2",
"main": "src/main.js",
"private": "true",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"ui:build": "cd ui && npx svelte-kit build",
"ui:dev": "cd ui && npx svelte-kit dev",
"ui:preview": "cd ui && npx svelte-kit preview",
"lint": "prettier --write . && eslint . --ext .js --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splinefi/spline.git"
},
"author": "Spline",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/splinefi/spline/issues"
},
"homepage": "https://github.com/splinefi/spline#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^6.0.0",
"prettier": "^2.3.1",
"prettier-plugin-svelte": "^2.3.1"
},
"dependencies": {
"dotenv": "^10.0.0",
"dotenv-cli": "^4.0.0"
}
}