-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 993 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 993 Bytes
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
{
"name": "calculator",
"version": "2.0.0",
"description": "Simple calculator in the browser",
"main": "app.ts",
"type": "module",
"scripts": {
"test": "jest",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore"
},
"author": "Louis Coutel",
"license": "ISC",
"devDependencies": {
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.10",
"@types/jsdom": "^21.1.6",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"global-jsdom": "9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}