-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
91 lines (91 loc) · 2.6 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
83
84
85
86
87
88
89
90
91
{
"name": "samhsa-prototype",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.22",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.10.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"axios": "^0.19.0",
"connected-react-router": "^6.5.2",
"google-maps-react": "^2.0.2",
"react": "^16.9.0",
"react-app-polyfill": "^1.0.2",
"react-burger-menu": "^2.6.11",
"react-dom": "^16.9.0",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-masonry-css": "^1.0.12",
"react-paginate": "^6.3.0",
"react-places-autocomplete": "^7.2.1",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.0",
"react-router-hash-link": "^1.2.2",
"react-scripts": "3.0.1",
"react-snap": "^1.23.0",
"redux": "^4.0.4",
"redux-form": "^8.2.6",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^4.3.2",
"styled-spinkit": "^0.7.4",
"tailwind.macro": "^1.0.0-alpha.10",
"tailwindcss": "^1.1.2",
"typeface-roboto-condensed": "0.0.75"
},
"scripts": {
"dev": "npm install && npm run start",
"start": "npm run tailwind:css && react-scripts start",
"build": "npm run tailwind:css && react-scripts build",
"test": "react-scripts test --testPathIgnorePatterns='<rootDir>/src/integration/'",
"test:int": "react-scripts test -t 'Integration Tests'",
"eject": "react-scripts eject",
"tailwind:css": "tailwind build src/css/tailwind.src.css -c src/tailwind.js -o src/tailwind.css",
"federalist": "npm run build && PUBLIC_URL=$BASEURL react-snap",
"lint": "eslint src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint-config-prettier": "^5.1.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"react-axe": "^3.3.0",
"react-test-renderer": "^16.10.2"
},
"reactSnap": {
"skipThirdPartyRequests": true,
"puppeteerArgs": [
"--no-sandbox",
"--disable-setuid-sandbox"
],
"puppeteerExecutablePath": "/usr/bin/google-chrome"
}
}