-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
82 lines (82 loc) · 2.02 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "kanttiinit-web",
"version": "11.0.2",
"description": "Kanttiinit.fi web client.",
"main": "index.js",
"engines": {
"node": "^16.13.0"
},
"dependencies": {
"@solidjs/router": "^0.5.0",
"date-fns": "^2.9.0",
"dotenv": "^15.0.0",
"fast-sort": "^3.2.0",
"haversine": "^1.1.0",
"leaflet": "^1.9.2",
"popper.js": "^1.14.5",
"snarkdown": "^2.0.0",
"solid-icons": "^1.0.4",
"solid-js": "^1.6.1",
"solid-styled-components": "^0.28.5",
"typescript": "^4.8.2",
"url-polyfill": "^1.0.11",
"vite": "^3.2.3",
"vite-plugin-pwa": "^0.13.3",
"vite-plugin-solid": "^2.4.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"fix-lint": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"author": "Jere Vaara, Max Huttunen",
"repository": {
"type": "github",
"url": "https://github.com/Kanttiinit/web"
},
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.2",
"@types/haversine": "^1.1.0",
"@types/leaflet": "^1.9.0",
"@types/semver": "^7.1.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-jest": "^28.1.3",
"eslint": "^8.27.0",
"eslint-plugin-solid": "^0.8.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"npm-run-all": "^4.1.2",
"prettier": "^1.16.1",
"ts-jest": "^28.0.7"
},
"resolutions": {
"ajv": "8.11.0",
"react": "17.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"moduleDirectories": [
"node_modules"
],
"testEnvironment": "jest-environment-jsdom",
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/testSetup.ts"
]
}
}