-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "zmk-parser",
"version": "1.0.0",
"description": "Parse ZMK keymaps",
"main": "index.js",
"repository": "https://github.com/bmcgavin/zmk-parser.git",
"author": "Richard Jones <rich@linuxplicable.org>",
"license": "MIT",
"scripts": {
"dev": "webpack serve --mode development",
"start": "node server.js",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@testing-library/react": "^12.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^18.11.5",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.9",
"css-loader": "^6.7.1",
"express": "^4.18.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.3",
"jsdom": "^19.0.0",
"path-browserify": "^1.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^3.1.0",
"ts-jest": "^27.1.2",
"ts-loader": "^9.4.1",
"ts-node": "^10.6.0",
"typescript": "^4.8.4",
"web-tree-sitter": "^0.20.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.7.2"
}
}