-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
85 lines (85 loc) · 2.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
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
{
"name": "datasci-police-budget",
"version": "1.0.0",
"private": true,
"description": "Explore Bay Area City Budgets",
"author": "Code for San Francisco",
"scripts": {
"build": "nuxt build",
"dev": "nuxt",
"export": "nuxt export",
"generate": "nuxt generate",
"lint": "vue-cli-service lint",
"start": "nuxt start",
"serve": "yarn generate && yarn start --port 3333",
"test": "start-server-and-test 'yarn serve' http://localhost:3333 'yarn cypress run'",
"test:clean": "rm -rf test/e2e/screenshots/*; rm -rf test/e2e/videos/*",
"test:open": "start-server-and-test 'yarn serve' http://localhost:3333 'yarn cypress open'"
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.4.0",
"@nuxtjs/pwa": "^3.3.4",
"@vue/cli-service": "^4.5.10",
"chart.js": ">=2.9.4",
"cypress": "^6.2.1",
"dayjs": "^1.10.3",
"debounce": "^1.2.0",
"nuxt": "^2.14.12",
"nuxt-i18n": "^6.18.0",
"vue": "^2.6.12",
"vue-chartjs": "^3.5.1",
"vue-d3-charts": "^0.2.8",
"vue-plotly": "^1.1.0",
"vue-spinner": "^1.0.3",
"vuex": "^3.6.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@fullhuman/postcss-purgecss": "^3.1.3",
"@nuxt/typescript-build": "^1.0.3",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/vuetify": "^1.0.0",
"@types/chart.js": "^2.9.29",
"@vue/cli-plugin-eslint": "~4.5.7",
"@vue/eslint-config-airbnb": "^5.3.0",
"@vue/test-utils": "^1.1.2",
"autoprefixer": "^9.7.4",
"babel-jest": "^26.6.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.4.1",
"husky": "^4.3.7",
"jest": "^24.1.0",
"lint-staged": "^10.5.3",
"nodemon": "^2.0.7",
"nuxt-purgecss": "^1.0.0",
"nuxt-svg-loader": "^1.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"start-server-and-test": "^1.11.7",
"typescript": "^4.1.3",
"vue-jest": "^5.0.0-alpha.1"
},
"browserslist": [
"defaults",
"ie >=11"
],
"engines": {
"node": ">=12.18.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}