This repository has been archived by the owner on Nov 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.98 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
91
92
93
94
95
96
{
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"classnames": "^2.2.6",
"emotion-theming": "^10.0.27",
"next": "^9.4.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1"
},
"description": "Next.js build with TypeScript support",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@cypress/webpack-preprocessor": "^5.4.1",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.0",
"@types/jsdom": "^16.2.3",
"@types/react": "^16.9.36",
"@types/react-axe": "^3.1.0",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"cypress": "^4.8.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"jest-emotion": "^10.0.32",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"prettier": "^2.0.5",
"react-axe": "^3.4.1",
"react-test-renderer": "^16.13.1",
"remark": "^12.0.0",
"remark-cli": "^8.0.0",
"remark-frontmatter": "^2.0.0",
"remark-lint": "^7.0.0",
"remark-preset-lint-markdown-style-guide": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"start-server-and-test": "^1.11.0",
"stylelint": "^13.6.0",
"stylelint-config-standard": "^20.0.0",
"ts-jest": "^26.1.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5"
},
"engines": {
"node": "~14.2.0",
"npm": "~6.14.0"
},
"name": "next-tsx",
"private": true,
"scripts": {
"build": "next build",
"cypress:record": "NODE_ENV=test cypress run --config video=true --config-file __tests__/cypress/cypress.json",
"cypress:run": "NODE_ENV=test cypress run --config-file __tests__/cypress/cypress.json",
"dev": "next",
"export": "next export -o dist",
"lint": "npm run lint:css && npm run lint:markdown && npm run lint:source && npm run lint:tests",
"lint:css": "stylelint --ignore-path .eslintignore '**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint:fix:css && npm run lint:fix:markdown && npm run lint:fix:source && npm run lint:fix:tests",
"lint:fix:css": "stylelint --fix --ignore-path .eslintignore '**/*.{js,ts,tsx}'",
"lint:fix:markdown": "remark --rc-path .remarkrc.json . .github/. --output",
"lint:fix:source": "eslint --fix '**/*.{js,json,md,ts,tsx}'",
"lint:fix:tests": "eslint --config __tests__/.eslintrc.json --ignore-path __tests__/.eslintignore --fix '**/*.{js,json,md,ts,tsx}'",
"lint:markdown": "remark --rc-path .remarkrc.json . .github/.",
"lint:source": "eslint '**/*.{js,json,md,ts,tsx}'",
"lint:tests": "eslint --config __tests__/.eslintrc.json --ignore-path __tests__/.eslintignore '__tests__/**/*.{js,json,md,ts,tsx}'",
"prettier": "prettier --ignore-path .gitignore --write '**/*.{js,json,ts,tsx}'",
"prettier:check": "prettier --check --ignore-path .gitignore '**/*.{js,json,ts,tsx}'",
"start": "next start",
"test": "npm run test:coverage && npm run test:e2e",
"test:coverage": "NODE_ENV=test jest --config __tests__/jest/jest.config.js --coverage",
"test:e2e": "next build && start-test start 3000 cypress:run",
"test:e2e:record": "next build && start-test start 3000 cypress:record",
"test:lighthouse": "lhci autorun",
"test:unit": "NODE_ENV=test jest --config __tests__/jest/jest.config.js",
"test:update": "jest --clearCache && NODE_ENV=test jest --config __tests__/jest/jest.config.js --updateSnapshot"
},
"version": "0.1.2"
}