-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "write-wall",
"version": "2.2.0",
"description": "A simple, sync-able text pad similar to Write Space",
"license": "CC-BY-SA-4.0",
"private": true,
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"develop": "webpack --config webpack/webpack.config.cjs --watch",
"build": "webpack --config webpack/webpack.config.cjs && node build.cjs",
"prepare": "husky"
},
"engineStrict": true,
"engines": {
"node": "^20.0.0 || ^22.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/user-event": "^14.5.2",
"@types/chrome": "^0.0.277",
"@types/eslint__js": "^8.42.3",
"adm-zip": "^0.5.16",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}