-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 801 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 801 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
27
{
"name": "alem-docs-web",
"version": "1.0.0",
"description": "Alem Docs Web project",
"repository": "https://github.com/wpdas/alem-docs-web.git",
"license": "MIT",
"scripts": {
"start": "alem dev --network testnet",
"start:mainnet": "alem dev",
"generate-tsx-from-md": "node ./scripts/generate-tsx-from-md",
"build": "alem build",
"deploy:mainnet": "npm run build; alem deploy",
"deploy:testnet": "npm run build; alem deploy --network testnet"
},
"dependencies": {
"alem": "1.3.1"
},
"devDependencies": {
"@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"
}
}