-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.11 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
{
"name": "hawk.so",
"version": "0.4.2",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "yarn lint:js && yarn lint:css",
"lint:css": "stylelint \"src/**/*{.css,.vue}\" --fix",
"lint:js": "eslint src/ --ext .js --ext .ts --ext .vue --fix",
"serve:prod": "http-server ./dist --push-state -c-0",
"storybook": "vue-cli-service storybook:serve -p 6006 -c config/storybook -s ./public",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"get-schema": "get-graphql-schema http://localhost:4000/graphql > schema.graphql",
"cy:run": "cypress run",
"e2e:ci": "start-server-and-test serve 8080 cy:run"
},
"dependencies": {
"@amplitude/analytics-browser": "^0.3.1",
"@hawk.so/javascript": "^3.0.6",
"@hawk.so/types": "^0.1.18",
"@hawk.so/webpack-plugin": "^1.0.1",
"@vue/cli-plugin-babel": "^4.1.2",
"@vue/cli-plugin-typescript": "^4.1.2",
"@vue/cli-service": "^4.5.15",
"axios": "^0.25.0",
"codex-notifier": "^1.1.2",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"highlight.js": "^10.4.1",
"http-server": "^0.12.0",
"lodash.clonedeep": "^4.5.0",
"lodash.mergewith": "^4.6.2",
"normalize.css": "^8.0.1",
"postcss-apply": "^0.12.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.3",
"postcss-nested": "^4.2.1",
"postcss-nested-ancestors": "^2.0.0",
"postcss-preset-env": "^6.6.0",
"postcss-simple-vars": "^5.0.2",
"short-number": "^1.0.7",
"spa-http-server": "^0.9.0",
"svgo": "^1.1.0",
"svgo-loader": "^2.1.0",
"vue": "^2.6.11",
"vue-class-component": "^7.0.2",
"vue-cli-plugin-storybook": "^2.1.0",
"vue-cli-plugin-svg-sprite": "^1.1.0",
"vue-cookies": "^1.6.1",
"vue-i18n": "^8.15.3",
"vue-infinite-scroll": "^2.0.2",
"vue-json-viewer": "^2.2.8",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.6",
"vue-template-compiler": "^2.6.11",
"vue-unique-id": "^3.2.1",
"vuex": "^3.1.2",
"vuex-persistedstate": "^3.0.1"
},
"devDependencies": {
"@storybook/addon-actions": "^6.3.12",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/addon-links": "^6.3.12",
"@storybook/addon-notes": "^5.3.21",
"@storybook/addon-toolbars": "^6.3.12",
"@storybook/core-server": "^6.3.12",
"@storybook/vue": "^6.3.12",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@vue/eslint-config-typescript": "^7.0.0",
"babel-eslint": "^10.0.3",
"cypress": "^8.3.0",
"eslint": "^7.24.0",
"eslint-config-codex": "^1.6.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.9.0",
"get-graphql-schema": "^2.1.2",
"lint-staged": "^10.2.2",
"start-server-and-test": "^1.13.1",
"stylelint": "^13.3.3",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-recommended": "^3.0.0",
"typescript": "^3.7.4"
},
"license": "UNLICENSED",
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}