generated from codebru/next-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "github-web-reader",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "node server.js",
"dev:test": "NEXT_PUBLIC_TEST=true node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ignore-path .gitignore .",
"test": "npm run test:accessibility:cli",
"test:jouney:gui": "cypress open",
"test:journey:cli": "cypress run",
"test:accessibility:cli": "pa11y-ci --config pa11y.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codebru/github-web-reader.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codebru/github-web-reader/issues"
},
"homepage": "https://github.com/codebru/github-web-reader#readme",
"dependencies": {
"isomorphic-unfetch": "^3.1.0",
"marked": "^4.0.17",
"next": "^12.1.6",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"cypress": "^10.2.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.1",
"pa11y-ci": "^3.0.1"
}
}