-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.89 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": "@manuscripts/json-schema",
"version": "2.2.11",
"description": "The Manuscripts JSON Schema types, and validation functions.",
"repository": "github:Atypon-OpenSource/manuscripts-json-schema",
"license": "Apache-2.0",
"main": "./dist/cjs",
"module": "./dist/es",
"types": "./dist/types",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all generate:build generate:run --parallel build:*",
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
"build:es": "tsc --outDir dist/es --declarationDir dist/types --declaration",
"generate:build": "tsc --project bin/tsconfig.json",
"generate:run": "node tsc-dist/index.js",
"lint": "eslint src bin --ext .js,.ts",
"prebuild": "rimraf tsc-dist/* dist/*",
"test": "jest --runInBand"
},
"dependencies": {
"ajv": "^8.12.0",
"deepmerge": "^4.3.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@manuscripts/eslint-config": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"@types/jest": "^29.2.4",
"@types/uuid": "^9.0.0",
"babel-jest": "^29.3.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.3.1",
"json-schema-to-typescript": "^12.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
}
}