-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
88 lines (88 loc) · 2.52 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
83
84
85
86
87
88
{
"name": "eco-logic",
"version": "1.0.0",
"description": "Backend : ``` cd backend yarn start ```",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"frontend:vue:build": "cd src/frontend/vuejs && vue-cli-service build",
"frontend:vue:serve": "cd src/frontend/vuejs && vue-cli-service serve",
"webpack": "webpack",
"backend:dev": "NODE_ENV=development webpack --watch --config src/backend/webpack.backend.config.js",
"backend:run:dev": "NODE_ENV=development nodemon dist/index.js --watch dist",
"frontend:react:start": "react-scripts start",
"frontend:react:build": "react-scripts build",
"frontend:react:test": "react-scripts test",
"frontend:react:eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nikoms/eco-logic.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nikoms/eco-logic/issues"
},
"homepage": "https://unruffled-banach-d9d1c0.netlify.com",
"private": true,
"workspaces": [
"src/frontend/vuejs"
],
"devDependencies": {
"@testing-library/react": "^9.1.1",
"@types/graphql": "^14.2.3",
"@types/node": "^12.6.8",
"@types/restify": "^7.2.12",
"@types/typescript": "^2.0.0",
"@types/uuid": "^3.4.5",
"ts-loader": "^6.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.14.0",
"type-graphql": "^0.17.4",
"typescript": "^3.3.4000",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@material-ui/core": "^4.1.2",
"@material-ui/icons": "^4.2.1",
"@types/jest": "24.0.16",
"@types/node": "12.6.9",
"@types/react": "16.8.24",
"@types/react-dom": "16.8.5",
"@types/react-redux": "^7.1.1",
"apollo-server-restify": "^1.3.6",
"event-target-shim": "^5.0.1",
"graphql": "^14.4.2",
"nodemon": "^1.19.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"redux": "^4.0.4",
"reflect-metadata": "^0.1.13",
"restify": "^8.4.0",
"typescript": "3.5.3",
"uuid": "^3.3.2"
},
"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"
]
}
}