This repository was archived by the owner on Mar 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.33 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.33 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
38
39
40
41
{
"name": "nftcart",
"packageManager": "yarn@3.2.0",
"version": "0.1.0",
"private": true,
"description": "The application to support warranty based on NFTs",
"main": "index.js",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"dev": "concurrently --kill-others-on-fail \"yarn contracts\" \"yarn web\"",
"web": "yarn workspace web dev",
"web:build": "yarn workspace web build",
"web:start": "yarn workspace web start",
"web:lint": "yarn workspace web lint",
"web:test": "yarn workspace web test",
"web:test:ci": "yarn workspace web test:ci",
"web:cypress": "yarn workspace web cypress",
"chains": "yarn workspace chains dev",
"chains:compile": "yarn workspace chains compile",
"chains:void:deploy": "yarn workspace chains void:deploy",
"chains:test": "yarn workspace chains test",
"chains:test:ci": "yarn workspace chains test:ci",
"docs": "yarn workspace docs dev",
"docs:compile": "yarn workspace docs compile",
"docs:test": "yarn workspace docs test",
"docs:test:ci": "yarn workspace docs test:ci",
"cms:develop": "yarn workspace cms develop",
"cms:build": "yarn workspace cms build"
},
"author": "",
"license": "ISC",
"dependencies": {
"concurrently": "^7.3.0"
},
"devDependencies": {
"husky": "^8.0.1"
}
}