generated from garronej/ts-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·102 lines (102 loc) · 3.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@making-sense/antlr-editor",
"version": "2.0.2",
"description": "ANTLR Typescript editor",
"repository": {
"type": "git",
"url": "git://github.com/Making-Sense-Info/ANTLR-Editor.git"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "vitest",
"lint:check": "eslint .",
"lint": "npm run lint:check -- --fix",
"_format": "prettier \"**/*.{ts,tsx,json,md}\"",
"format": "npm run _format -- --write",
"format:check": "npm run _format -- --list-different",
"storybook": "start-storybook -p 9999",
"build-storybook": "build-storybook",
"link-in-app": "yarn build && (ts-node --skipProject scripts/link-in-app.ts & yarn build -w)",
"start-test-app": "yarn build && ts-node --skipProject scripts/link-in-test-app.ts && ((cd test-app && rm -rf node_modules/.cache && yarn start) & yarn build -w)"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{ts,tsx,json,md}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v"
}
},
"author": "u/NicoLaval",
"license": "MIT",
"files": [
"src/",
"!src/test/",
"dist/",
"!dist/test/",
"!dist/tsconfig.tsbuildinfo"
],
"keywords": [
"ANTLR",
"Monaco"
],
"homepage": "https://github.com/Making-Sense-Info/ANTLR-Editor",
"devDependencies": {
"@making-sense/vtl-2-0-antlr-tools-ts": "^2.0.1",
"@making-sense/vtl-2-0-monaco-tools-ts": "^0.1.0",
"@making-sense/vtl-2-1-antlr-tools-ts": "^1.0.3",
"@making-sense/vtl-2-1-monaco-tools-ts": "^1.0.1",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addons": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/node-logger": "^6.5.9",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.9",
"@storybook/theming": "^6.5.9",
"@types/debug": "^4.1.12",
"@types/node": "^22.7.4",
"@types/path-browserify": "^1.0.3",
"@types/react": "^18.3.11",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"babel-plugin-named-exports-order": "0.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"path-browserify": "^1.0.1",
"prettier": "^3.3.3",
"prop-types": "15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"storybook-dark-mode": "^1.1.0",
"ts-node": "^10.9.2",
"typescript": "^4.8.2",
"vitest": "^2.1.2",
"webpack": "5.95.0"
},
"dependencies": {
"@making-sense/antlr4ng": "^3.0.4",
"@monaco-editor/react": "^4.6.0",
"monaco-editor": "^0.52.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}