-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.11 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
{
"name": "microMacroHack",
"version": "1.0.0",
"private": true,
"dependencies": {
"@google-cloud/vision": "^0.13.0",
"classnames": "^2.2.5",
"exif": "^0.6.0",
"google-client-api": "^1.0.4",
"history": "^4.7.2",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-images-upload": "^1.1.1",
"react-relay": "^1.3.0",
"relay-runtime": "^1.3.0",
"styled-components": "^2.1.2",
"universal-router": "^3.2.0"
},
"devDependencies": {
"babel-plugin-relay": "^1.3.0",
"babel-plugin-styled-components": "^1.2.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"chai": "^4.1.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-prettier": "^2.2.0",
"flow-bin": "^0.53.1",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.4",
"pre-render": "^0.1.0-preview.2",
"prettier": "^1.6.1",
"react-scripts": "1.0.12",
"relay-compiler": "^1.4.1",
"stylelint": "^8.0.0",
"stylelint-config-primer": "^2.0.1",
"stylelint-config-standard": "^17.0.0",
"stylelint-config-styled-components-processor": "^0.1.1",
"stylelint-order": "^0.6.0",
"stylelint-processor-styled-components": "^0.4.0"
},
"lint-staged": {
"*.js": ["eslint --no-ignore --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"scripts": {
"precommit": "lint-staged",
"lint":
"eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" . && stylelint \"./src/**/*.js\"",
"fix":
"eslint --ignore-path .gitignore --ignore-pattern \"!**/.*\" --fix .",
"relay":
"node ./setup --download-schema && relay-compiler --src ./src --schema ./src/schema.graphql",
"build": "node ./setup && react-scripts build && node ./render",
"test": "node ./setup && react-scripts test --env=jsdom",
"deploy": "node ./setup && react-scripts build && gh-pages -d build",
"start": "node ./setup && react-scripts start"
},
"homepage": "https://eitah.github.io/microMacroHack/"
}