-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "my-massa-sc",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "asp --summary",
"test:integration": "npm run build && tsx tests/integration.spec.ts",
"build": "npx massa-as-compile",
"clean": "rimraf build",
"deploy": "npm run build && tsx src/deploy.ts",
"prettier": "prettier '**/src/**/*.ts' --check && as-prettier --check assembly",
"prettier:fix": "prettier '**/src/**/*.ts' --write && as-prettier --write assembly",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fmt:check": "npm run prettier && npm run lint",
"fmt": "npm run prettier:fix && npm run lint:fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@as-pect/cli": "^8.1.0",
"@assemblyscript/loader": "^0.27.2",
"@massalabs/as-transformer": "^0.3.2",
"@massalabs/as-types": "^2.0.0",
"@massalabs/eslint-config": "^0.0.10",
"@massalabs/massa-as-sdk": "^2.5.2",
"@massalabs/massa-sc-compiler": "^0.1.0",
"@massalabs/massa-sc-deployer": "^1.3.0",
"@massalabs/massa-web3": "^3.0.2",
"@massalabs/prettier-config-as": "^0.0.2",
"@protobuf-ts/plugin": "^2.9.1",
"@types/node": "^18.11.10",
"assemblyscript": "^0.27.2",
"assemblyscript-prettier": "^1.0.7",
"dotenv": "^16.0.3",
"prettier": "^2.8.1",
"tslib": "^2.4.0",
"tsx": "^4.7.0",
"typescript": "^4.8.4"
},
"overrides": {
"visitor-as": {
"assemblyscript": "$assemblyscript"
}
},
"type": "module",
"prettier": "@massalabs/prettier-config-as",
"engines": {
"node": ">=16"
},
"dependencies": {
"@massalabs/sc-standards": "^0.1.1"
}
}