-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
105 lines (105 loc) · 3.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "openresync",
"version": "0.4.0",
"private": true,
"scripts": {
"dev": "TZ=UTC nodemon --watch server/ --watch lib/ --watch tests/qa/ --watch tests/fixtures/",
"dev:debug": "TZ=UTC nodemon --inspect-brk --watch server/ --watch lib/",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "TZ=UTC jest",
"storybook": "start-storybook -p 6006 --host storybook.openresync.test --ci",
"build-storybook": "build-storybook",
"qa-server": "TZ=UTC nodemon --watch tests/qa/ --watch tests/fixtures/ --watch lib/ tests/qa/server/index.js"
},
"main": "server/index.js",
"dependencies": {
"@graphql-tools/schema": "^7.1.3",
"@tailwindcss/postcss7-compat": "^2.0.4",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"apollo-link-http": "^1.5.17",
"apollo-link-ws": "^1.0.20",
"apollo-server-express": "^2.25.2",
"apollo-utilities": "^1.3.4",
"autoprefixer": "^9.8.6",
"axios": "^0.21.1",
"bootstrap": "^4.6.0",
"bootstrap-vue": "^2.21.2",
"concat-stream": "^2.0.0",
"core-js": "^3.6.5",
"cron": "^1.8.2",
"graphql-scalars": "^1.9.0",
"graphql-tag": "^2.11.0",
"knex": "^0.21.12",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"moment-locales-webpack-plugin": "^1.2.0",
"moment-timezone": "^0.5.33",
"moment-timezone-data-webpack-plugin": "^1.4.0",
"mysql2": "^2.2.5",
"objection": "^2.2.14",
"pino": "^6.11.0",
"postcss": "^7.0.35",
"progress": "^2.0.3",
"solr-client": "^0.9.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.4",
"text-ellipsis": "^1.0.3",
"vue": "^2.6.11",
"vue-apollo": "^3.0.5",
"vue-cli-plugin-tailwind": "^2.0.6",
"vue-reactive-provide": "^0.3.0",
"vue-router": "^3.5.1",
"xml2js": "^0.4.23",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/vue": "^6.1.21",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"express": "^4.17.1",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"nodemon": "^2.0.6",
"pino-pretty": "^4.4.0",
"sass": "^1.32.8",
"sass-loader": "^10.1.1",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/no-unused-components": "off",
"vue/no-unused-vars": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}