-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "motoko-playground",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@dfinity/agent": "^2.0.0",
"@dfinity/candid": "^2.0.0",
"@dfinity/principal": "^2.0.0",
"@monaco-editor/react": "4.6.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"lodash.debounce": "^4.0.8",
"motoko": "^3.8.1",
"prettier-plugin-motoko": "^0.9.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-google-charts": "^4.0.1",
"react-markdown": "^9.0.1",
"react-modal": "^3.16.1",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@vitejs/plugin-react": "^4.3.1",
"comlink": "^4.4.1",
"http-proxy-middleware": "^3.0.2",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"mo-dev": "^0.13.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"dotenv": "^16.3.1",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0"
},
"scripts": {
"start": "vite",
"service": "mo-dev --deploy",
"build": "vite build",
"test": "vite test -- --config=config/jest.config.js",
"deploy": "dfx deploy",
"clean": "dfx stop && dfx start --clean --background",
"prestart": "dfx start --background; [ -f .dfx/local/canister_ids.json ] || dfx deploy",
"predeploy": "npm run prestart",
"prepare": "husky",
"dev": "vite"
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx,json,css,scss,htm,html,md,mdx}": [
"prettier --write"
],
"vite.config.ts": [
"prettier --write"
],
"package.json": [
"prettier --write"
]
}
}