This repository has been archived by the owner on Sep 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
51 lines (51 loc) · 1.52 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
{
"name": "react-app-search-demo",
"version": "0.1.0",
"license": "MIT",
"private": true,
"dependencies": {
"dotenv": "^5.0.1",
"lodash": "^4.17.10",
"node-sass-chokidar": "^1.3.0",
"ora": "^2.1.0",
"package-stream": "^3.0.1",
"query-string": "^6.1.0",
"rc-pagination": "^1.16.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.4",
"rebass": "^2.0.0-0",
"swiftype-app-search-javascript": "^1.0.3"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css":
"npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start": "react-scripts start",
"start-dev": "npm-run-all -p watch-css start",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"format": "prettier src/**/*.{js,css} --write",
"lint": "eslint **/*.js",
"precommit": "lint-staged",
"init-data": "node scripts/init-data.js",
"index-data": "node scripts/index-data.js",
"postinstall": "npm-run-all build-css"
},
"lint-staged": {
"src/**/*.{js,css}": ["prettier --write", "git add"]
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.5",
"npm-run-all": "^4.1.3",
"prettier": "1.12.1",
"swiftype-app-search-node": "^0.1.1"
}
}