forked from PotLock/bos-app-alem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 890 Bytes
/
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
{
"name": "alem-app",
"version": "1.0.0",
"description": "The base template for Create Alem dApp",
"repository": "https://github.com/PotLock/bos-app-alem",
"license": "MIT",
"scripts": {
"fmt": "prettier --write src/**/*.{js,jsx,ts,tsx,json}",
"fmt:check": "prettier --check src/**/*.{js,jsx,ts,tsx,json}",
"start": "alem dev",
"build": "alem build",
"deploy:mainnet": "npm run build; alem deploy",
"deploy:testnet": "npm run build; alem deploy --network testnet",
"test": "npx playwright test"
},
"dependencies": {
"alem": "1.1.2"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/styled-components": "^5.1.26",
"lint-staged": "^13.2.1",
"prettier": "^2.8.8"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "prettier --write --ignore-unknown"
}
}