-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.08 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": "trello",
"version": "0.1.0",
"private": true,
"homepage": "https://stellarhoof.github.io/trello-clone",
"dependencies": {
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "^2.0.0-next.66cc7a90"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom --verbose",
"test:browser": "jest -c jest/browser/config.js --verbose",
"test:ci": "CI=1 npm run test --ci && CI=1 npm run test:browser --ci",
"eject": "react-scripts eject"
},
"devDependencies": {
"@material-ui/core": "^1.1.0",
"@material-ui/icons": "^1.1.0",
"apollo-cache-inmemory": "^1.2.2",
"apollo-client": "^2.3.2",
"apollo-link-schema": "^1.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"gh-pages": "^1.2.0",
"graphql-tag": "^2.9.2",
"husky": "^1.0.0-rc.4",
"jest-image-snapshot": "^2.4.1",
"mobx": "^4.3.0",
"mobx-react": "^5.1.2",
"paths.macro": "^2.0.2",
"prettier": "^1.12.1",
"prettier-eslint-cli": "^4.7.1",
"prop-types": "^15.6.1",
"puppeteer": "^1.4.0",
"react-apollo": "^2.1.4",
"react-cosmos": "^4.3.0",
"react-cosmos-apollo-proxy": "^4.4.0",
"react-dnd": "^4.0.4",
"react-dnd-html5-backend": "^4.0.4",
"react-testing-library": "^3.0.1",
"react-textarea-autosize": "^6.1.0",
"recompose": "^0.27.1"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 11"
]
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:prettier/recommended",
"plugin:jsx-a11y/strict"
],
"plugins": [
"prettier",
"jsx-a11y"
],
"rules": {
"prettier/prettier": "warn"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn test:ci",
"pre-push": "yarn test:ci"
}
}
}