-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 2 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
57
58
{
"name": "@dsnp/frequency-schemas",
"version": "0.0.0",
"description": "Schemas for DSNP on Frequency",
"type": "module",
"scripts": {
"test": "jest",
"deploy": "node --loader ts-node/esm --no-warnings cli/index.ts",
"read": "node --loader ts-node/esm --no-warnings cli/read.ts",
"find": "node --loader ts-node/esm --no-warnings cli/find.ts",
"clean": "rm -Rf dist",
"format": "tsc -p ./tsconfig.eslint.json --noEmit --pretty && eslint --fix \"**/*.ts\"",
"lint": "tsc -p ./tsconfig.eslint.json --noEmit --pretty && eslint \"**/*.ts\"",
"package": "node scripts/package.cjs",
"prepackage": "cp CONTRIBUTING.md README.md LICENSE ./dist",
"build": "npm run clean && tsc -p ./tsconfig.types.json && tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.esm.json",
"postbuild": "npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LibertyDSNP/frequency-schemas.git"
},
"author": "DSNP.org",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LibertyDSNP/frequency-schemas/issues"
},
"homepage": "https://github.com/LibertyDSNP/frequency-schemas#readme",
"dependencies": {
"@dsnp/schemas": "^1.3.1",
"json-stringify-pretty-compact": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"@dsnp/parquetjs": "^1.3.0"
},
"devDependencies": {
"@dsnp/parquetjs": "^1.3.5",
"@dsnp/test-generators": "^0.1.0",
"@frequency-chain/api-augment": "^1.13.2",
"@polkadot/api": "^13.2.1",
"@polkadot/types": "^13.2.1",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"avro-js": "^1.11.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.1",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1"
}
}