-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.73 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
{
"scripts": {
"start": "./node_modules/nodemon/bin/nodemon.js",
"clear": "rm -rf .cache build",
"test": "jest",
"type-check": "tsc --noEmit",
"lint-check": "eslint src --ext .ts,.tsx",
"gen-test-modeling": "ts-node ./generateTestModeling.ts"
},
"nodemonConfig": {
"exec": "ts-node --files src/server/app.ts",
"ext": "ts,js,css",
"watch": [
"src",
"static"
],
"ignore": [
".git",
"node_modules"
]
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"axios": "^0.21.1",
"bulma": "^0.9.2",
"dotenv": "^8.2.0",
"eslint": "^7.25.0",
"eslint-plugin-react": "^7.23.2",
"express": "^4.17.1",
"graphviz": "0.0.9",
"graphviz-react": "^1.1.1",
"http-proxy-middleware": "^1.3.0",
"morgan": "^1.10.0",
"neo4j-driver": "^4.2.3",
"parcel-bundler": "^1.12.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"react-toastify": "^7.0.4"
},
"devDependencies": {
"@types/d3-graphviz": "^2.6.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.23",
"@types/morgan": "^1.9.2",
"@types/parcel-bundler": "^1.12.3",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@types/react-toastify": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}