This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "listcommunity",
"homepage": "https://list.community",
"version": "0.1.0",
"private": true,
"dependencies": {
"algoliasearch": "^3.27.1",
"base-64": "^0.1.0",
"contrast": "^1.0.1",
"core-js": "^2.5.5",
"element-qsa-scope": "^1.0.1",
"ganalytics": "^3.0.0",
"gh-pages": "^1.1.0",
"github-markdown-css": "^2.9.0",
"htmr": "^0.8.7",
"husky": "^0.14.3",
"is-absolute-url": "^2.1.0",
"lint-staged": "^6.1.1",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"lodash.difference": "^4.5.0",
"lodash.groupby": "^4.6.0",
"npm-run-all": "^4.1.3",
"numeral": "^2.0.6",
"postcss-cli": "^4.1.1",
"postcss-import": "^11.1.0",
"prettier": "^1.12.1",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.0",
"react-scroll-up": "^1.3.3",
"react-snap": "^1.12.2",
"tailwindcss": "^0.4.3",
"url-join": "^4.0.0"
},
"scripts": {
"precommit": "lint-staged",
"start": "npm-run-all -p start:css start:js",
"start:css": "postcss src/css/index.css -o src/index.css -w",
"start:js": "react-scripts start",
"build": "npm-run-all build:css build:js",
"build:css": "postcss src/css/index.css -o src/index.css",
"build:js": "react-scripts build",
"postbuild": "react-snap",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"jsxBracketSameLine": true
},
"reactSnap": {
"waitFor": 10000,
"preconnectThirdParty": false,
"minifyHtml": {
"collapseWhitespace": false
}
}
}