-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.35 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
{
"name": "@v4fire/boilerplate",
"description": "V4Fire Boilerplate",
"homepage": "https://github.com/V4Fire/Boilerplate#readme",
"main": "src/app.js",
"license": "MIT",
"version": "3.4.1",
"author": {
"name": "kobezzza",
"email": "[email protected]",
"url": "https://github.com/kobezzza"
},
"repository": {
"type": "git",
"url": "git+https://github.com/V4Fire/Boilerplate.git"
},
"bugs": {
"url": "https://github.com/V4Fire/Boilerplate/issues"
},
"keywords": [
"V4Fire"
],
"scripts": {
"start": "node ./app",
"build": "gulp build:tsconfig && webpack",
"build:file": "gulp build:tsconfig && webpack --public-path",
"dev": "gulp build:tsconfig && webpack --watch",
"dev:file": "gulp build:tsconfig && webpack --watch --public-path",
"test": "npm run test:typescript && npm run test:eslint",
"test:eslint": "npx eslint ./config/** ./src/**",
"test:typescript": "node node_modules/@v4fire/typescript-check",
"up": "npm i && npm up && npm audit fix"
},
"dependencies": {
"@v4fire/client": "3.14.0",
"@v4fire/core": "3.73.0",
"config": "1.31.0",
"express": "4.17.1",
"express-http-proxy": "1.2.0"
},
"optionalDependencies": {
"gulp": "4.0.2",
"webpack": "5.65.0",
"webpack-cli": "4.9.1"
},
"devDependencies": {
"@v4fire/linters": "1.9.0"
}
}