-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@cloudnouns/kit",
"version": "0.1.0",
"author": "Badu Blanc <itsbadu@hey.com>",
"repository": "git://github.com/cloudnouns/kit.git",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"package": "svelte-kit package",
"preview": "svelte-kit preview",
"prepare": "svelte-kit sync",
"test": "mocha",
"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": {
"@faker-js/faker": "^6.3.1",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@types/chai": "^4.3.1",
"@types/is-base64": "^1.1.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"autoprefixer": "^10.4.4",
"chai": "^4.3.6",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^4.0.0",
"is-base64": "^1.1.0",
"mocha": "^10.0.0",
"postcss": "^8.4.12",
"postcss-load-config": "^3.1.4",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"svelte": "^3.44.0",
"svelte-check": "^2.7.0",
"svelte-highlight": "^6.1.2",
"svelte-preprocess": "^4.10.5",
"svelte2tsx": "^0.5.9",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@ethersproject/bignumber": "^5.6.0",
"@ethersproject/solidity": "^5.6.0",
"@types/hex-color-regex": "^1.1.1",
"@types/randomcolor": "^0.5.6",
"hex-color-regex": "^1.1.0",
"jshashes": "^1.0.8",
"randomcolor": "^0.6.2"
}
}