-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.27 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.27 KB
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
83
84
85
86
87
88
89
{
"name": "tweet-storm-builder",
"version": "0.1.0",
"private": true,
"homepage": "https://sumofus.github.io/toolkit",
"dependencies": {
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.5.0",
"@types/querystringify": "^2.0.0",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"aws-amplify": "^0.2.9",
"aws-amplify-react": "^0.1.34",
"aws-sdk": "^2.205.0",
"axios": "^0.18.0",
"clipboard": "^2.0.1",
"copy-to-clipboard": "^3.0.8",
"gh-pages": "^1.1.0",
"handlebars": "^4.0.11",
"handlebars-delimiters": "^1.0.0",
"history": "^4.7.2",
"immutable": "^3.8.2",
"lodash": "^4.17.10",
"mustache": "^2.3.0",
"querystringify": "^2.0.0",
"react": "^16.12.0",
"react-bulma-components": "3.1.3",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.12.0",
"react-intl": "^3.11.0",
"react-loadable": "^5.4.0",
"react-redux": "^5.0.6",
"react-router-dom": "^5.1.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "^3.3.0",
"react-toggle": "^4.1.1",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"twitter-text": "^2.0.3",
"typescript": "^3.7.5",
"uuid": "^3.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "NODE_ICU_DATA=node_modules/full-icu react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"flow": "flow"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@types/axios": "^0.14.0",
"@types/react-router-dom": "^5.1.3",
"@types/react-toggle": "^4.0.2",
"csstype": "^2.6.8",
"flow-bin": "^0.73.0",
"full-icu": "^1.2.1",
"husky": ">=4",
"lint-staged": ">=10",
"prettier": "^1.13.3"
},
"peerDependencies": {
"jest": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}