-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
{
"name": "spherre",
"version": "0.0.1",
"scripts": {
"chain": "starknet-devnet --seed 0 --account-class cairo1",
"compile": "scarb build",
"deploy": "ts-node scripts-ts/helpers/deploy-wrapper.ts",
"deploy:clear": "cd deployments && node clear.mjs $* && cd .. && ts-node scripts-ts/helpers/deploy-wrapper.ts $*",
"deploy:no-reset": "ts-node scripts-ts/helpers/deploy-wrapper.ts --no-reset",
"format": "prettier --write 'scripts-ts/**/*.{ts,tsx}' && scarb fmt",
"format:check": "prettier --check 'scripts-ts/**/*.{ts,tsx}' && scarb fmt --check",
"postinstall": "shx cp -n .env.example .env",
"test": "snforge test"
},
"dependencies": {
"dotenv": "^16.3.1",
"envfile": "^6.18.0",
"prettier": "^2.8.8",
"starknet": "7.1.0",
"toml": "^3.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/prettier": "^2",
"@types/yargs": "^17.0.32",
"globals": "^15.8.0",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"typescript-eslint": "^7.16.1",
"yargs": "^17.7.2"
},
"peerDependencies": {
"eslint": "^8.0.0"
}
}