-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 876 Bytes
/
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
{
"name": "ynab",
"type": "module",
"version": "1.0.0",
"description": "Tools to help me use YNAB better.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack/webpack.config.cjs",
"build_dev": "webpack --config webpack/webpack_dev.config.cjs",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/chrome": "^0.0.258",
"@types/jest": "^29.5.12",
"copy-webpack-plugin": "^12.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"linkedom": "^0.16.8",
"ynab": "^2.2.0"
}
}