-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.25 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.25 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
{
"name": "Horis",
"version": "1.0.0",
"description": "Horse Race Prediction Project",
"repository": "https://github.com/Horse-Race-Prediction-System/Horis",
"author": "Efe Mert Demir <efemertdemir@hotmail.com>",
"license": "BSD-3",
"private": true,
"scripts": {
"build": "webpack",
"watch-assets": "webpack --watch",
"watch-server": "uvicorn --reload horis.app:app",
"watch": "concurrently -k -n \"Assets,Server\" -p \"[{name}]\" -c \"cyan.bold,green.bold\" \"yarn watch-assets\" \"yarn watch-server\"",
"build-prod": "NODE_ENV=production webpack"
},
"dependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/preset-typescript": "^7.9.0",
"@fortawesome/fontawesome-free": "^5.13.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.1.0",
"css-loader": "^3.5.2",
"cssnano": "^4.1.10",
"file-loader": "^6.0.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss": "^7.0.27",
"postcss-loader": "^3.0.0",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.4",
"terser-webpack-plugin": "^2.3.5",
"typeface-open-sans": "^0.0.75",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}