-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.86 KB
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
{
"name": "kickit-frontend",
"version": "0.1.0",
"private": true,
"homepage": "https://app.kickit.us",
"dependencies": {
"antd": "^3.8.0",
"apollo-boost": "^0.1.6",
"apollo-cache-persist": "^0.1.1",
"apollo-client-preset": "^1.0.8",
"apollo-link-schema": "^1.1.0",
"enzyme": "^3.3.0",
"gh-pages": "^1.2.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.2",
"history": "^4.7.2",
"immutable": "^3.8.2",
"react": "^16.4.1",
"react-apollo": "^2.1.4",
"react-content-loader": "^3.1.2",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-scripts": "1.1.4",
"react-sortable-hoc": "^0.8.3",
"react-sortable-pane": "^1.0.2",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.2",
"redux-thunk": "^2.2.0",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.80.0",
"slate": "^0.34.0",
"slate-react": "^0.12.9",
"styled-components": "^3.3.0",
"tachyons": "^4.10.0",
"tachyons-cli": "^1.3.0",
"throttle-debounce": "^2.0.0"
},
"scripts": {
"start": "REACT_APP_STAGE=dev react-scripts start",
"mock": "REACT_APP_STAGE=mock react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"coverage": "react-scripts test --env=jsdom --coverage --testResultsProcessor ./node_modules/jest-junit",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "npm run build && gh-pages -d build",
"deploy-demo": "REACT_APP_STAGE=mock react-scripts build && gh-pages -d build",
"css": "tachyons src/css/app.css > src/index.css --minify",
"prestart": "npm run css",
"prebuild": "npm run css"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.9.1"
}
}