forked from VATSIM-UK/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.29 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
{
"name": "vatsimukcore",
"description": "VATSIM UK Core Framework",
"license": "MIT",
"type": "project",
"private": true,
"scripts": {
"dev": "yarn run development",
"development": "node_modules/cross-env/src/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "node_modules/cross-env/src/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "yarn run watch -- --watch-poll",
"hot": "node_modules/cross-env/src/bin/cross-env.js NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "yarn run production",
"build-waiting-lists-manager-prod": "cd nova-components/WaitingListsManager && yarn && yarn run prod",
"build-waiting-lists-manager": "cd nova-components/WaitingListsManager && yarn && yarn run dev",
"production": "node_modules/cross-env/src/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"heroku-postbuild": "yarn run prod && yarn run build-waiting-lists-manager-prod"
},
"dependencies": {
"admin-lte": "2.4.18",
"axios": "^0.19",
"bootstrap": "^3.3.7",
"bootstrap-sass": "^3.3.7",
"bootstrap-tour": "^0.12.0",
"cross-env": "^7.0.2",
"font-awesome": "^4.7.0",
"jquery": "^3.3.1",
"jquery-datetimepicker": "^2.5.20",
"jvectormap": "^2.0.4",
"laravel-mix": "^5.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"lodash": "^4.17.10",
"popper.js": "^1.16",
"resolve-url-loader": "3.1.1",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"vue": "^2.6.11",
"vue-template-compiler": "^2.6.11"
},
"release": {
"repositoryUrl": "https://github.com/VATSIM-UK/core",
"branch": "master",
"plugins": [
"@semantic-release/npm",
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"releasedLabels": false
}
]
]
}
}