forked from aidanok/DAOGarden-Conracts
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 859 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 859 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
28
29
30
31
32
33
34
35
36
37
{
"name": "community-contract",
"version": "1.0.2",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CommunityXYZ/contract.git"
},
"scripts": {
"build": "npm run clean && npm run build-ts && npm run cp",
"build-ts": "node build.js",
"clean": "rimraf ./dist",
"cp": "copyfiles -u 1 ./src/**/*.json dist",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {
"arweave": "^1.9.1",
"promises-tho": "^1.1.0",
"smartweave": "^0.4.10"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"copyfiles": "^2.4.0",
"esbuild": "^0.8.5",
"glob": "^7.1.6",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5",
"typescript.api": "^0.7.7"
}
}