-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 734 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 734 Bytes
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
{
"name": "open-chat-bot",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"setup": "npm i && dfx canister create backend && dfx generate backend && dfx deploy",
"start": "run-p backend",
"backend": "mo-dev --generate --deploy -y",
"test": "run-s test:backend",
"test:backend": "mo-test",
"format": "prettier --write \"src/**/*.{json,js,jsx,ts,tsx,css,scss}\" \"backend/**/*.mo\"",
"sources": "mops sources",
"postinstall": "mops install"
},
"dependencies": {
},
"devDependencies": {
"cross-fetch": "^3.1.6",
"ic-mops": "^0.39.2",
"mo-dev": "^0.11.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-motoko": "^0.5.3"
}
}