-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "karol",
"version": "0.8.1",
"description": "Web based version of Karol, a kids friendly tool for learning algorithms",
"author": "Philipp Miller",
"license": "MIT",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "vite",
"dist": "vite build",
"test": "jest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint src --max-warnings 0",
"format": "eslint src --fix",
"pre-commit": "yarn lint && yarn typecheck && yarn test"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-regular-svg-icons": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"eslint-config-preact": "^1.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"preact": "^10.7.3",
"sass": "^1.52.1",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"typescript-plugin-css-modules": "^3.2.0",
"vite": "^2.9.9"
}
}