This repository has been archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.15 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
{
"name": "viking-language-dictionary-next",
"description": "Viking Language Dictionary, Next.js implementation",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/stscoundrel/viking-language-dictionary-next.git",
"author": "stscoundrel <silvennoinen.sampo@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "eslint src tests",
"fix": "eslint src tests --fix",
"jest": "jest --verbose --runInBand --passWithNoTests",
"test:unit": "yarn jest",
"test:integration": "yarn cypress run --env env=test --spec 'tests/integration/tests/**/*'",
"test:coverage": "jest --coverage tests src/components --coverageThreshold='{\"global\":{\"statements\":\"90\", \"functions\":\"80\", \"branches\":\"80\", \"lines\":\"90\"}}'"
},
"dependencies": {
"abbreviatrix": "^1.0.7",
"markari": "^1.0.7",
"next": "^12.3.1",
"next-pwa": "^5.6.0",
"old-norse-alphabet": "^1.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reset-css": "^5.0.1",
"sass": "^1.62.1",
"sitemap": "^7.1.1",
"slugify": "^1.6.6",
"teljari": "^1.1.1",
"viking-language-dictionary": "^0.10.1",
"viking-language-dictionary-abbreviations": "^0.9.1",
"younger-futhark": "^1.2.4"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/react": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.5",
"cypress": "^12.11.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.3.4",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react-hooks": "^4.6.0",
"identity-obj-proxy": "^3.0.0",
"jafningjar": "^1.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"next-sitemap": "^4.0.9",
"node-mocks-http": "^1.12.2",
"react-test-renderer": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}