-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.84 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
87
88
89
90
{
"name": "next.js-template",
"author": "Paul Schultz",
"version": "1.0.0",
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"dev": "next",
"build": "next build",
"start": "next start",
"clean": "rimraf .next/ .nyc_output/ coverage/ docs/ out/ node_modules/",
"cypress:start": "concurrently --names 'CYPRESS,SERVER' --prefix-colors 'yellow,blue' \"yarn cypress open\" \"yarn build && yarn start\"",
"typedoc:build": "typedoc --tsconfig .",
"typedoc:start": "npx serve docs",
"jest:test": "jest --watchAll ./tests/unit-tests",
"test": "cypress run",
"lint": "prettier --check .",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@next/bundle-analyzer": "^11.0.1",
"@patternfly/react-core": "^4.147.0",
"@patternfly/react-icons": "^4.11.8",
"next": "^11.0.1",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.1",
"next-pwa": "^5.2.21",
"next-transpile-modules": "^8.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tslib": "^2.3.0",
"typescript-is": "^0.18.3"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.3",
"@types/node": "^15.6.1",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-plugin-istanbul": "^6.0.0",
"eslint": "^7.27.0",
"eslint-config-next": "^11.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-patternfly-react": "^4.1.5",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^6.0.0",
"lint-staged": "^11.0.1",
"prettier": "2.3.1",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.4",
"typescript": "^4.3.4",
"webpack": "^5.38.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css,json}": "prettier --write"
},
"optionalDependencies": {
"@cypress/code-coverage": "^3.9.9",
"@types/enzyme": "^3.10.9",
"@types/jest": "^26.0.24",
"@types/jsdom": "^16.2.13",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"babel-jest": "^27.0.6",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cypress": "^8.3.0",
"debug": "^4.3.2",
"enquirer": "^2.3.6",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.2",
"jest": "^27.0.6",
"jest-enzyme": "^7.1.2",
"jest-fetch-mock": "^3.0.3",
"jsdom": "^16.6.0",
"jsdom-global": "^3.0.2",
"typedoc": "^0.21.4",
"typedoc-plugin-merge-modules": "^3.0.0"
}
}