-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.2 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "engaland_dapp",
"license": "GPL-3.0",
"version": "0.0.1",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"prepare": "svelte-kit sync && husky install",
"preinstall": "(git submodule update --init --recursive || ./vercel-submodule.sh)",
"test": "echo \"no tests for landing!\" || playwright test || yarn test:single './!(node_modules|.next|dist|build|out|contracts)/**/*.spec.{js,jsx,ts,tsx}'",
"test:single": "npx ts-mocha -r tsconfig-paths/register,./src/lib/helpers/mocha-init.ts -p ./tsconfig.test.json --timeout 20000",
"test:server": "yarn test:server:single './!(node_modules|.next|dist|build|out|contracts)/**/*.spec.{js,jsx,ts,tsx}'",
"test:server:single": "npx ts-mocha -r tsconfig-paths/register,./helpers/mocha-init.ts -p ./tsconfig.test.json --timeout 60000",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"devDependencies": {
"@playwright/test": "^1.21.0",
"@poppanator/sveltekit-svg": "^0.3.2",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/cookie": "^0.4.1",
"@types/enzyme": "^3.10.12",
"@types/jsdom": "^16.2.14",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.4",
"axios": "^0.27.2",
"blurhash": "^1.1.5",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-shallow-deep-equal": "^1.4.6",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"lint-staged": "^12.4.1",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-load-config": "^3.1.4",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"sharp": "^0.30.6",
"svelte": "^3.48.0",
"svelte-check": "^2.2.6",
"svelte-preprocess": "^4.10.5",
"svelte-waypoint": "^0.1.4",
"tailwindcss": "^3.0.23",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^4.0.0",
"tslib": "^2.3.1",
"typescript": "~4.6.2"
},
"type": "module",
"dependencies": {
"@fontsource/fira-mono": "^4.5.0",
"@sveltejs/adapter-cloudflare": "^1.0.0-next.23",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"classnames": "^2.3.1",
"cookie": "^0.4.1",
"echarts": "^5.3.3",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"nanoid": "^3.3.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.5.5",
"tailwindcss-children": "^2.1.0",
"wobble": "^1.5.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,svelte}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md,svelte}": "prettier --write"
}
}