-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"name": "starlab",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"@types/graphql": "^14.2.2",
"apollo-boost": "^0.4.3",
"apollo-datasource-rest": "^0.5.1",
"apollo-server-express": "^2.6.9",
"express": "^4.17.1",
"graphql": "^14.4.2",
"graphql-tag": "^2.10.1",
"moment": "^2.24.0",
"node-sass": "^4.12.0",
"react": "^16.8.6",
"react-apollo": "^2.5.8",
"react-apollo-hooks": "^0.5.0",
"react-back-to-top-button": "^0.0.14",
"react-dom": "^16.8.6",
"react-infinite-scroll-component": "^4.5.2",
"react-scripts": "3.0.1",
"sweetalert": "^2.1.2"
},
"scripts": {
"start": "concurrently \"yarn client\" \"yarn server\"",
"client": "react-scripts start",
"server": "nodemon --exec babel-node ./server/server.js",
"clinet-build": "react-scripts build",
"client-eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"concurrently": "^4.1.1",
"nodemon": "^1.19.1"
}
}