-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.21 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
{
"name": "dnd5e",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "node server.js",
"build": "next build",
"ci": "npm run lint && npm run test",
"start": "next start",
"lint": "eslint --config .eslintrc.js --fix",
"test": "jest",
"manage-data": "ts-node manage-data.ts"
},
"dependencies": {
"@fluent/bundle": "^0.17.1",
"@fluent/langneg": "^0.6.1",
"@fluent/react": "^0.14.1",
"@inrupt/solid-ui-react": "^2.0.0",
"@tailwindcss/forms": "^0.2.1",
"autoprefixer": "^10.4.1",
"clsx": "^1.1.1",
"gray-matter": "^4.0.2",
"nested-error-stacks": "^2.1.0",
"next": "^12.1.5",
"next-pwa": "^5.4.4",
"postcss": "^8.4.5",
"rdf-namespaces": "^1.9.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^5.0.3",
"react-swipeable": "^6.0.1",
"swr": "^1.1.2",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@testing-library/dom": "^8.11.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.3",
"@types/nested-error-stacks": "^2.1.0",
"@types/node": "^17.0.5",
"@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"@zeit/next-source-maps": "0.0.3",
"commander": "^8.3.0",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.5",
"jest-localstorage-mock": "^2.4.18",
"jest-raw-loader": "^1.0.1",
"next-router-mock": "^0.6.7",
"prettier": "^2.5.1",
"raw-loader": "^4.0.2",
"react-test-renderer": "^17.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"whatwg-fetch": "^3.6.2"
}
}