-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.95 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
{
"name": "embed-motoko",
"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": "vite build",
"test": "run-s test:frontend test:backend",
"test:frontend": "vitest run",
"test:backend": "mo-test",
"test:watch": "run-p vitest mo-test",
"sources": "mops sources",
"prepare": "husky install",
"precommit": "lint-staged"
},
"dependencies": {
"bs58": "5.0.0",
"classnames": "2.3.1",
"copy-to-clipboard": "3.3.1",
"highlight.js": "11.6.0",
"highlightjs-motoko": "1.0.4",
"motoko": "3.11.0",
"pako": "2.0.4",
"react": "17.0.2",
"react-device-detect": "2.2.2",
"react-dom": "17.0.2",
"react-icons": "4.4.0",
"react-syntax-highlighter": "15.5.0",
"react-tooltip": "4.2.21"
},
"devDependencies": {
"@netlify/functions": "1.4.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "13.5.0",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@vitejs/plugin-react": "3.0.1",
"autoprefixer": "10.4.8",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"esbuild": "0.16.15",
"eslint": "8.22.0",
"eslint-config-react-app": "7.0.1",
"husky": "8.0.1",
"ic-mops": "0.14.1",
"jsdom": "20.0.0",
"lint-staged": "13.0.3",
"mo-dev": "0.10.1",
"netlify": "13.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.2",
"sass": "1.54.4",
"tailwindcss": "3.1.8",
"vite": "4.3.9",
"vite-imagetools": "4.0.13",
"vite-plugin-environment": "1.1.3",
"vitest": "0.26.3",
"web-vitals": "3.1.0"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --max-warnings=0 --fix",
"prettier --write"
]
}
}