This repository has been archived by the owner on Jul 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.59 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
{
"name": "sm-chat",
"version": "0.1.0",
"private": true,
"dependencies": {
"classnames": "^2.2.5",
"history": "^4.7.2",
"identicon.js": "^2.3.1",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.7",
"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",
"babel-preset-react-app": "^3.1.0",
"chai": "^4.1.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.3",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.53.1",
"gh-pages": "^1.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"jsdom": "^11.3.0",
"lint-staged": "^4.0.4",
"node-fetch": "latest",
"pre-render": "^0.1.0-preview.2",
"prettier": "^1.6.1",
"react-scripts": "[email protected]:valorize/react-scripts.git#searchmetrics",
"react-test-renderer": "^15.5.4",
"relay-compiler": "^1.3.0",
"stylelint": "^8.0.0",
"stylelint-config-primer": "^2.2.0",
"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": {
"lint-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 && ./node_modules/.bin/react-scripts test --env=jsdom",
"deploy": "node ./setup && react-scripts build && gh-pages -d build",
"start": "node ./setup && react-scripts start"
},
"babel": {
"presets": [
"babel-preset-react-app"
]
}
}