-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.56 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
{
"name": "bookface",
"version": "0.0.1",
"private": true,
"devDependencies": {
"circular-dependency-plugin": "^5.0.2",
"prettier-eslint-cli": "4.7.1",
"react-scripts": "1.1.4"
},
"dependencies": {
"apollo-cache-inmemory": "1.2.5",
"apollo-client": "2.3.5",
"apollo-link": "1.2.2",
"apollo-link-context": "^1.0.7",
"apollo-link-http": "1.5.4",
"apollo-link-state": "^0.4.1",
"apollo-link-ws": "^1.0.7",
"apollo-upload-client": "^8.0.0",
"axios": "^0.18.0",
"dotenv": "^6.0.0",
"downshift": "^2.0.18",
"formik": "^1.0.1",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.5",
"micro": "^9.1.4",
"micro-cors": "^0.1.0",
"moment": "^2.22.0",
"react": "16.4.1",
"react-apollo": "^2.1.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "16.4.1",
"react-dropzone": "^4.2.9",
"react-modal": "3.5.1",
"react-router-dom": "4.3.1",
"semantic-ui-css": "^2.3.1",
"semantic-ui-react": "^0.82.1",
"styled-components": "^3.2.5",
"subscriptions-transport-ws": "^0.9.7",
"tachyons": "4.11.1",
"yup": "^0.26.0"
},
"scripts": {
"start": "node app.js",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier-eslint --write \"src/**/*.+(js|jsx)\"",
"prettier-dry-run": "prettier-eslint \"src/**/*.+(js|jsx)\" -l debug",
"postinstall": "react-scripts build",
"heroku-postbuild": "npm install && npm run build"
}
}