forked from parisjs/parisjs-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "parisjs.org",
"version": "1.0.0",
"description": "Parisjs website",
"main": "index.js",
"scripts": {
"#<git hooks>": "handled by husky",
"precommit": "lint-staged",
"#</git hooks>": "handled by husky",
"start": "phenomic start",
"build": "phenomic build",
"test": "npm run build",
"algolia:index": "node ./scripts/indexToAlgolia.js"
},
"license": "MIT",
"devDependencies": {
"@phenomic/cli": "^1.0.0-beta.3",
"@phenomic/core": "^1.0.0-beta.3",
"@phenomic/preset-react-app": "^1.0.0-beta.3",
"fetch-jsonp": "^1.1.3",
"github-api": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-helmet": "^5.0.0",
"react-intl": "^2.4.0",
"react-jsonschema-form": "^1.0.0",
"react-router": "^3.2.0"
},
"phenomic": {
"presets": [
"@phenomic/preset-react-app"
]
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"react-icons": "^2.2.7",
"react-instantsearch": "^4.5.1",
"front-matter": "^2.3.0",
"algoliasearch": "^3.24.11"
}
}