This repository was archived by the owner on Aug 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.25 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.25 KB
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
{
"name": "react-app-starter",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .tsx,.ts src/",
"test": "yarn run jest --colors --detectOpenHandles",
"export": "next build && next export"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"@material-ui/styles": "4.9.10",
"@yarnpkg/pnpify": "2.0.0-rc.21",
"cacache": "^15.0.3",
"next": "9.3.6",
"prop-types": "15.7.2",
"react": "^16.13.1",
"react-app-starter": "link:./src",
"react-dom": "^16.13.1",
"schema-utils": "^2.6.6"
},
"devDependencies": {
"@babel/core": "7.9.6",
"@types/node": "13.13.4",
"@types/react": "16.9.34",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"babel-eslint": "10.1.0",
"babel-plugin-inline-react-svg": "1.1.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "2.5.1",
"jest": "25.5.2",
"prettier": "2.0.5",
"typescript": "^3.8.3"
}
}