-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.85 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "engaland_dapp",
"license": "GPL-3.0",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"prepare": "husky install",
"postinstall": "svelte-kit sync",
"preinstall": "(git submodule update --init --recursive || ./vercel-submodule.sh) && yarn --cwd ./contracts/Fundraising install && yarn --cwd ./contracts/Fundraising typechain",
"test": "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": {
"@babel/core": "^7.18.10",
"@babel/plugin-proposal-async-generator-functions": "^7.18.10",
"@babel/plugin-transform-async-to-generator": "^7.18.6",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@playwright/test": "^1.21.0",
"@poppanator/sveltekit-svg": "^0.3.2",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "^1.0.0-next.405",
"@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/sinon": "^10.0.13",
"@types/tailwindcss": "^3.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"autoprefixer": "^10.4.4",
"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",
"rxjs-marbles": "^7.0.1",
"rxjs-spy": "^8.0.2",
"rxjs-spy-devtools-plugin": "^0.0.4",
"sinon": "^14.0.0",
"svelte": "^3.49.0",
"svelte-check": "^2.8.0",
"svelte-preprocess": "^4.10.7",
"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",
"zone.js": "^0.11.7"
},
"type": "module",
"dependencies": {
"@ethers-ancillary/bsc": "^0.0.3",
"@fontsource/fira-mono": "^4.5.0",
"@lukeed/uuid": "^2.0.0",
"@sveltejs/adapter-cloudflare": "^1.0.0-next.31",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@walletconnect/web3-provider": "^1.8.0",
"classnames": "^2.3.1",
"cookie": "^0.4.1",
"copy-to-clipboard": "^3.3.2",
"engaland_fundraising_app": "./contracts/Fundraising",
"ethers": "5.6.0",
"ipfs-core": "^0.14.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",
"vite": "^3.0.7",
"web3modal": "^1.9.8",
"wobble": "^1.5.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,svelte}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,css,md,svelte}": "prettier --write"
}
}