This repository was archived by the owner on May 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "runes",
"description": "Transform text to runic script with Next.js",
"version": "0.1.0",
"private": true,
"repository": "https://github.com/stscoundrel/runes.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\":\"90\", \"branches\":\"90\", \"lines\":\"90\"}}'"
},
"dependencies": {
"elder-futhark": "^1.0.9",
"futhorc": "^1.0.8",
"futhork": "^1.1.8",
"next": "^13.1.1",
"next-pwa": "^5.5.5",
"next-sitemap": "^3.1.43",
"react": "^18.1.0",
"react-dom": "^18.0.0",
"reset-css": "^5.0.1",
"sass": "^1.57.1",
"staveless-futhark": "^0.6.0",
"younger-futhark": "^1.2.4"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.42.0",
"cypress": "^12.2.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.1.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^27.2.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"identity-obj-proxy": "^3.0.0",
"jafningjar": "^1.0.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.3.1",
"node-mocks-http": "^1.12.1",
"react-test-renderer": "^18.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}