-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.5 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
{
"name": "@substrate/dev",
"version": "0.9.0",
"description": "JS/TS development environment configuration and dependencies for @substrate projects.",
"repository": "https://github.com/paritytech/substrate-js-dev.git",
"bugs": "https://github.com/paritytech/substrate-js-dev/issues",
"homepage": "https://github.com/paritytech/substrate-js-dev#readme",
"author": "Parity Technologies <[email protected]>",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bin": {
"substrate-dev-run-lint": "./scripts/substrate-dev-run-lint.cjs",
"substrate-exec-eslint": "./scripts/substrate-exec-eslint.cjs",
"substrate-exec-jest": "./scripts/substrate-exec-jest.cjs",
"substrate-exec-rimraf": "./scripts/substrate-exec-rimraf.cjs",
"substrate-exec-tsc": "./scripts/substrate-exec-tsc.cjs",
"substrate-update-pjs-deps": "./scripts/substrate-update-pjs-deps.cjs"
},
"files": [
"config",
"scripts"
],
"scripts": {
"lint": "eslint"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"yargs": "^17.7.2"
},
"packageManager": "[email protected]"
}