This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
forked from dyc3/opentogethertube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.08 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
{
"name": "opentogethertube",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node app.js",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "eslint --fix . && vue-cli-service lint",
"lint-ci": "eslint . && vue-cli-service --no-fix lint",
"test": "vue-cli-service test:unit",
"api-server": "nodemon app.js",
"dev": "NODE_ENV=development concurrently \"npm:api-server\" \"npm:serve\"",
"dev-windows": "SET NODE_ENV=development&&concurrently \"npm:api-server\" \"npm:serve\""
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@mdi/font": "^3.8.95",
"@vue/cli": "^3.11.0",
"axios": "^0.19.0",
"core-js": "^2.6.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"lodash": "^4.17.15",
"material-design-icons-iconfont": "^5.0.1",
"moment": "^2.24.0",
"nanotimer": "^0.3.15",
"pg": "^7.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^5.15.1",
"sequelize-cli": "^5.5.0",
"unique-names-generator": "^3.0.0",
"uuid": "^3.3.2",
"vue": "^2.6.10",
"vue-axios": "^2.1.4",
"vue-events": "^3.1.0",
"vue-gtag": "^1.1.2",
"vue-native-websocket": "^2.0.13",
"vue-router": "^3.0.3",
"vue-slider-component": "^3.0.33",
"vue-youtube": "^1.3.5",
"vuedraggable": "^2.23.2",
"vuetify": "^2.1.0",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-plugin-unit-jest": "^3.9.0",
"@vue/cli-service": "^3.11.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"concurrently": "^4.1.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "^4.9.0",
"nodemon": "^1.19.1",
"sass": "^1.19.0",
"sass-loader": "^7.1.0",
"sqlite3": "^4.1.0",
"vue-cli-plugin-vuetify": "^2.0.3",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.4.3",
"webpack-bundle-analyzer": "^3.6.0"
}
}