-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.54 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
{
"name": "@dfinity/feedback",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
"setup": "npm ci && dfx canister create backend && dfx generate backend && dfx deploy",
"start": "run-p frontend backend",
"frontend": "vite --port 3000",
"backend": "mo-dev --generate --deploy -y",
"build:frontend": "vite build",
"build": "npm run build:frontend",
"preview": "vite preview",
"test": "run-s test:mo test:ts",
"test:mo": "mo-test",
"test:ts": "vitest run",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\" \"backend/**/*.mo\"",
"prepare": "husky install",
"precommit": "lint-staged",
"sources": "mops sources",
"postinstall": "mops install"
},
"dependencies": {
"@dfinity/agent": "^1.0.1",
"@dfinity/auth-client": "^1.0.1",
"@dfinity/candid": "^1.0.1",
"@dfinity/principal": "^1.0.1",
"@emotion/styled": "^11.11.0",
"@tippyjs/react": "^4.2.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.8.0",
"react-markdown": "^8.0.6",
"react-router-dom": "^6.9.0",
"react-select": "^5.7.2",
"react-toastify": "^9.1.2",
"recharts": "^2.8.0",
"styled-components": "^5.3.9",
"sweetalert2": "^11.4.8",
"turndown": "^7.1.2",
"twin.macro": "^3.1.0",
"usehooks-ts": "^2.9.1",
"zustand": "^4.3.6"
},
"devDependencies": {
"@emotion/react": "^11.10.6",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"@types/turndown": "^5.0.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"babel-plugin-twin": "^1.1.0",
"cross-env": "^7.0.3",
"cross-fetch": "^3.1.5",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^8.0.3",
"ic-mops": "^0.9.1",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.0",
"mo-dev": "^0.13.0",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"prettier-plugin-motoko": "^0.5.2",
"sass": "^1.59.3",
"tailwindcss": "^3.2.7",
"vite": "^4.5.3",
"vite-imagetools": "^4.0.18",
"vitest": "^0.29.7",
"web-vitals": "^3.3.0"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --max-warnings=0 --fix",
"prettier --write"
]
}
}