-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "learn-nextjs-cep-researcher",
"version": "1.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "./node_modules/.bin/eslint .",
"lint:fix": "./node_modules/.bin/eslint --fix .",
"format": "prettier --write ./**/*.{js,jsx,json}",
"test:e2e": "./node_modules/.bin/nightwatch"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"gray-matter": "^4.0.2",
"next": "9.3.5",
"next-compose-plugins": "^2.2.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"winston": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chromedriver": "^83.0.0",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"geckodriver": "^1.19.1",
"nightwatch": "^1.3.6",
"prettier": "^2.0.5"
}
}