forked from discohook/site
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.82 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
83
84
85
86
{
"name": "discohook",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "NODE_OPTIONS=--max-http-header-size=81920 next start",
"build": "next build",
"dev": "NODE_OPTIONS=--max-http-header-size=81920 next dev",
"test": "NODE_ENV=test TZ=UTC jest",
"test:watch": "yarn run test --watch",
"test:cov": "yarn run test --coverage",
"test:verbose": "yarn run test:cov --verbose",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix",
"lint:error": "yarn run lint --max-warnings 0",
"typecheck": "tsc --noEmit",
"typecheck:watch": "yarn run typecheck --watch",
"format": "prettier --write './**/*.@(js|jsx|ts|tsx)'",
"format:check": "prettier --check './**/*.@(js|jsx|ts|tsx)'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/discohook/discohook.git"
},
"author": "Discohook authors <[email protected]>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/discohook/discohook/issues"
},
"homepage": "https://discohook.org/",
"dependencies": {
"@babel/runtime": "^7.11.2",
"@popperjs/core": "^2.4.4",
"core-js": "^3.6.5",
"d3-ease": "^1.0.6",
"date-fns": "^2.15.0",
"highlight.js": "^9.18.3",
"idb": "^5.0.4",
"mobx": "^5.15.6",
"mobx-react-lite": "^2.0.7",
"next": "^9.5.2",
"polished": "^3.6.5",
"punycode": "^2.1.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-focus-on": "^3.5.0",
"react-is": "^16.13.1",
"react-spring": "^8.0.27",
"regenerator-runtime": "^0.13.7",
"simple-markdown": "^0.7.2",
"styled-components": "^5.1.1",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@next/bundle-analyzer": "^9.5.2",
"@testing-library/dom": "^7.22.2",
"@testing-library/jest-dom": "^5.11.3",
"@testing-library/react": "^10.4.8",
"@testing-library/user-event": "^12.1.1",
"@types/d3-ease": "^1.0.9",
"@types/highlight.js": "^9.12.4",
"@types/jest": "^26.0.10",
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/styled-components": "^5.1.2",
"@types/testing-library__jest-dom": "^5.9.2",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"babel-plugin-styled-components": "^1.11.1",
"core-js-bundle": "^3.6.5",
"eslint": "^7.7.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"eslint-plugin-unicorn": "^21.0.0",
"fake-indexeddb": "^3.1.2",
"jest": "^26.4.0",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}