-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 2.13 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
{
"name": "price-calculator",
"version": "1.4.0",
"description": "ArDrive Price Calculator",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"lint": "eslint --fix .",
"ci": "pnpm test && pnpm build",
"clean": "rimraf build",
"preview": "vite preview"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Permanent Data Solutions Inc",
"email": "[email protected]",
"website": "https://ardrive.io"
},
"repository": {
"type": "git",
"url": "https://github.com/ardriveapp/price-calculator.git"
},
"dependencies": {
"@ardrive/turbo-sdk": "^1.1.0",
"ardrive-core-js": "1.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@remcovaes/web-test-runner-vite-plugin": "^1.2.0",
"@testing-library/react": "^11.2.7",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/eslint": "^7.29.0",
"@types/mocha": "^10.0.1",
"@types/react": "^17.0.62",
"@types/react-dom": "^17.0.20",
"@types/react-is": "^17.0.4",
"@types/rimraf": "^3.0.2",
"@types/sinon": "^10.0.15",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-react": "^4.0.3",
"@web/test-runner": "^0.13.31",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.18.12",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"http-server-spa": "^1.3.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"tsc-files": "^1.1.4",
"typescript": "^4.9.5",
"vite": "^4.4.3",
"vite-plugin-node-stdlib-browser": "^0.2.1",
"vite-plugin-svgr": "^3.2.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
}
}