-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1006 Bytes
/
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
{
"name": "github-repo-search",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "run-s build:api build:front",
"build:api": "warp build api/",
"build:front": "webpack --progress --mode=production",
"deploy": "warp deploy . api/",
"predev": "warp project select",
"dev": "run-p dev:*",
"dev:api": "warp dev api/",
"dev:front": "webpack-dev-server --open",
"postinstall": "cd api/ && npm install"
},
"dependencies": {
"@warpjs/engine": "^4.0.6",
"date-fns": "^2.18.0",
"vue": "^2.6.12"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.1",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.5.1",
"npm-run-all": "^4.1.5",
"style-loader": "^1.3.0",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"warp": "^4.0.6",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
}
}