-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 991 Bytes
/
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
{
"name": "react-accordion",
"version": "1.0.0",
"description": "Accordion UI based on React",
"main": "pages/index.js",
"author": "Bishal Pantha",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"babel-jest": "^26.6.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"jest": "^26.6.0",
"react-test-renderer": "^15.4.2"
},
"dependencies": {
"classnames": "^2.2.5",
"next": "^9.5.5",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest"
}
}