-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
{
"name": "wikiautocomplete",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"test": "jest",
"cypress:open": "cypress open",
"cypress:e2e": "cypress run -e TAGS='@e2e'",
"deploy": "npm run build && aws s3 cp dist/ s3://sherryhsu.name --recursive"
},
"jest": {
"setupFiles": [
"<rootDir>/node_modules/regenerator-runtime/runtime"
]
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^1.0.0",
"cypress": "^3.2.0",
"cypress-cucumber-preprocessor": "^1.11.0",
"eslint": "^5.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.3",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.5.0",
"react-test-renderer": "^16.7.0",
"react-testing-library": "^5.4.4",
"regenerator-runtime": "^0.13.1",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"@material-ui/core": "^3.7.1",
"@material-ui/icons": "^3.0.1",
"classnames": "^2.2.6",
"jsonp": "^0.2.1",
"memoize-one": "^5.0.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-onclickoutside": "^6.7.1",
"rxjs": "^6.3.3",
"uglifyjs-webpack-plugin": "^2.1.2"
}
}