-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.67 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
89
90
91
92
93
{
"name": "wakanda",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:backend": "tsc --project backend/tsconfig.json",
"start:backend": "node dist/backend/index.js",
"build:frontend": "webpack -c ./frontend/webpack.config.js",
"dev:frontend": "webpack serve -c ./frontend/webpack.config.js",
"typeorm": "ts-node --project ./backend/tsconfig.json ./node_modules/typeorm/cli.js --config ./backend/ormconfig.ts",
"migration": "yarn typeorm migration:run",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.3",
"express-session": "^1.17.1",
"inquirer": "^7.3.3",
"joi": "^17.3.0",
"minio": "^7.0.18",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-oneauth": "^1.3.0",
"pg": "^8.5.1",
"react-datetime": "^3.0.4",
"react-markdown": "^5.0.3",
"react-modal": "^3.12.1",
"react-redux": "^7.2.2",
"react-select": "^4.1.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.1.1",
"typeorm": "^0.2.30",
"typeorm-store": "^1.2.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/minio": "^7.0.7",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.16",
"awesome-debounce-promise": "^2.1.0",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"redux-devtools": "^3.7.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3",
"webpack": "^5.15.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2",
"webpack-node-externals": "^2.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**/*.{js,ts,tsx}": [
"tslint -c tslint.json -q --fix",
"prettier --write --loglevel silent"
]
},
"_moduleAliases": {
"~": "dist/backend/"
}
}