-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "webapp",
"version": "1.1.1",
"private": true,
"license": "ISC",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "./node_modules/.bin/jest",
"lint:scripts": "./node_modules/.bin/eslint --ext .ts --ext .tsx src/",
"lint:styles": "./node_modules/.bin/stylelint src/",
"lint": "yarn lint:scripts && yarn lint:styles"
},
"repository": {
"type": "git",
"url": "[email protected]:jrobinsonc/nextjs-starter-kit.git"
},
"bugs": {
"url": "https://github.com/jrobinsonc/nextjs-starter-kit/issues"
},
"dependencies": {
"next": "^11.1.2",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@types/node": "^16.0.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"@zeit/next-source-maps": "^0.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"babel-plugin-preval": "^5.0.0",
"babel-plugin-transform-node-env-inline": "^0.4.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-plugin-transform-remove-debugger": "^6.9.4",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsdoc": "^36.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.0.6",
"node-sass": "^6.0.1",
"prettier": "^2.3.2",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-scss": "^3.19.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=10.16",
"npm": ">=6.9",
"yarn": ">=1.19"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
]
}