-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.37 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
{
"name": "@starnavi/react-accordion",
"version": "0.0.2",
"description": "",
"main": "./dist/index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"lint": "node_modules/.bin/esw src/**/*.{js,jsx}; exit 0",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/starnavi-team/react-accordion"
},
"keywords": [
"react",
"react-accordion",
"accordion"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^16.5.0",
"react-dom": "^16.5.0"
},
"dependencies": {
"prop-types": "^15.6.2",
"styled-components": "^3.4.6"
},
"jest": {
"bail": true,
"verbose": true,
"transform": {
".jsx?$": "babel-7-jest"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testEnvironment": "enzyme"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-7-jest": "^21.3.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.5.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-environment-enzyme": "^6.0.4",
"jest-enzyme": "^6.0.4",
"jest-styled-components": "^6.2.0",
"react": "^16.5.0",
"react-dom": "^16.5.0",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}