-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.27 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
{
"name": "ebates-chat-kit",
"version": "1.1.6",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"start": "concurrently \"yarn lint:watch\" \"yarn test:watch\" \"yarn watch\"",
"lint": "eslint .",
"lint:watch": "esw . -w",
"test": "jest",
"test:watch": "jest --watch",
"prebuild": "rimraf dist",
"build": "rollup -c",
"build:analyze": "ANALYZE_PACKAGE=true rollup -c",
"watch": "rollup -c --watch",
"docs": "npx styleguidist build",
"docs:serve": "npx styleguidist server",
"deploy:npm": "node ./scripts/deploy-npm.js"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@webpack-blocks/core": "^2.0.0",
"autolinker": "^3.11.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"child-process-promise": "^2.2.1",
"concurrently": "^4.1.1",
"eslint": "5.16.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"eslint-watch": "^6.0.0",
"jest": "^24.8.0",
"jest-styled-components": "^6.3.3",
"lodash": "^4.17.19",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-styleguidist": "^9.1.13",
"react-test-renderer": "^16.8.6",
"react-textarea-autosize": "^7.1.0",
"react-transition-group": "^4.2.2",
"rimraf": "^2.6.3",
"rollup": "^1.19.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-visualizer": "^2.5.4",
"styled-components": "^4.3.2",
"webpack": "^4.39.1",
"webpack-blocks": "^2.0.1",
"xss": "^1.0.6"
},
"jest": {
"verbose": true,
"watchPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
},
"dependencies": {}
}