-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.02 KB
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
{
"name": "fanuc-macro-b",
"version": "0.1.0",
"description": "A Lexer, Parser, and Interpreter for Fanuc Macro B NC files.",
"author": {
"email": "kevinkhill@pm.me",
"name": "Kevin Hill",
"url": "https://github.com/kevinkhill"
},
"license": "MIT",
"private": true,
"source": "./src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/kevinkhill/fanuc-macro-b.git"
},
"scripts": {
"test": "jest",
"lint": "eslint --ext \".ts\" ./src ./demo",
"fix": "yarn lint --fix",
"types": "yarn tsnd ./scripts/gen_dts_signatures.ts",
"build": "yarn parcel build ./playground/index.html",
"play": "yarn parcel serve --port 3000 ./playground/index.html",
"demo:vars": "yarn tsnd --respawn ./demo/variables.demo.ts",
"demo:intr": "yarn tsnd --respawn ./demo/interpret.demo.ts"
},
"lint-staged": {
"*.ts": "eslint --cache --fix './src/**/*.ts'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@monaco-editor/react": "^4.3.1",
"chevrotain": "^10.0.0",
"ts-pattern": "^3.3.5"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@uiw/react-codemirror": "^4.3.3",
"autoprefixer": "^10.4.2",
"eslint": "^8.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^6.0.0",
"jest": "^27.4.7",
"jest-extended": "^2.0.0",
"monaco-editor": "^0.32.1",
"parcel": "^2.2.1",
"postcss": "^8.4.6",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^3.0.18",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}