This repository has been archived by the owner on Oct 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "web-client",
"version": "0.1.0",
"private": true,
"author": {
"name": "Caio Amaral Corrêa",
"email": "caiobep.dev@gmail.com"
},
"dependencies": {
"antd": "^3.1.3",
"apollo-cache-inmemory": "^1.1.5",
"apollo-client": "^2.2.0",
"apollo-link-http": "^1.3.2",
"apollo-link-ws": "^1.0.4",
"graphql": "^0.13.0",
"graphql-tag": "^2.6.1",
"moment": "^2.20.1",
"react": "^16.2.0",
"react-apollo": "^2.0.4",
"react-dom": "^16.2.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"simpl-schema": "^1.4.1",
"subscriptions-transport-ws": "^0.9.5",
"typeface-roboto-slab": "0.0.54",
"uniforms": "^1.23.0",
"uniforms-antd": "^1.23.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-plugin-import": "^1.6.3",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"pre-commit": "^1.2.2",
"react-app-rewire-less": "^2.1.0",
"react-app-rewired": "^1.4.0"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-app-rewired eject",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint --fix src/**/*.js"
},
"pre-commit": [
"lint:fix"
]
}