forked from ArkProjectNFTs/bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.08 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
{
"name": "starklane",
"version": "0.1.0",
"private": true,
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"build": "dotenv -- turbo run build",
"build:l1": "dotenv -- turbo run build:l1",
"build:l2": "dotenv -- turbo run build:l2",
"deploy-l1:goerli": "dotenv -- turbo run deploy-l1:goerli",
"deploy-l2:goerli": "dotenv -- turbo run deploy-l2:goerli",
"deploy-account:goerli": "dotenv -- turbo run deploy-account:goerli",
"new:account:goerli": "dotenv -- turbo run new:account:goerli",
"deploy:account:goerli": "dotenv -- turbo run deploy:account:goerli",
"dev": "dotenv -- turbo run dev --parallel",
"lint": "dotenv -- turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"test": "dotenv -- turbo run test"
},
"devDependencies": {
"all-contributors-cli": "^6.24.0",
"eslint-config-custom": "*",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"dotenv-cli": "^7.0.0"
}
}