-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "node proxyDevServer.js",
"build": "next build",
"build:all": "yarn build && yarn docs:build",
"start": "NODE_ENV=production node proxyDevServer.js",
"type-check": "tsc",
"docs": "styleguidist server",
"docs:build": "styleguidist build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"next": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-icons": "^3.11.0"
},
"devDependencies": {
"@testing-library/dom": "^7.26.3",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.0",
"@types/jest": "^26.0.14",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-core": "^6.26.3",
"babel-jest": "^26.6.1",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.5.3",
"jest-dom": "^4.0.0",
"react-docgen-typescript": "^1.20.5",
"react-styleguidist": "^11.1.0",
"ts-jest": "^26.4.1",
"typescript": "4.0"
},
"license": "MIT"
}