-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.38 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
{
"name": "ccv-website",
"version": "1.0.0",
"private": true,
"description": "Brown University Center for Computation and Visualization",
"author": "fernandogelin",
"scripts": {
"build": "nuxt build",
"funccreds": "cd functions && firebase functions:config:get > .runtimeconfig.json",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-pattern '/functions/' .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore --ignore-pattern '/functions/' .",
"commit": "git-cz",
"dev": "nuxt",
"pregenerate": "./pregenerate.sh",
"generate": "nuxt generate",
"start": "nuxt start",
"test": "jest",
"fn-install": "cp .npmrc functions/.npmrc && cd functions && npm ci",
"predeploy": "./predeploy.sh",
"local-deploy": "npm run generate && npm run build && npm run predeploy",
"prod-deploy": "firebase deploy -P prod",
"qa-deploy": "firebase deploy -P qa",
"prepare": "husky install"
},
"dependencies": {
"@nuxt/content": "^1.15.1",
"@nuxtjs/markdownit": "^2.0.0",
"bulma": "^0.9.3",
"bulma-checkradio": "^1.1.1",
"express": "^4.17.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"nuxt": "^2.15.6",
"sass": "^1.66.1",
"vue-multiselect": "^2.1.6",
"vue-scrollto": "^2.20.0"
},
"devDependencies": {
"@nuxt/postcss8": "^1.1.3",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/style-resources": "^1.1.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"axios": "^0.25.0",
"babel-eslint": "^10.0.1",
"cheerio": "^1.0.0-rc.9",
"dotenv": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.4.0",
"firebase-admin": "^9.9.0",
"firebase-functions": "^3.14.1",
"firebase-tools": "^9.12.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lunr": "^2.3.9",
"node-fetch": "^2.6.1",
"nuxt-svg-loader": "^1.2.0",
"postcss": "^8.4.21",
"prettier": "^2.3.1",
"sass": "^1.62.1",
"sass-loader": "^10.1.1",
"stylelint": "^13.13.0",
"stylelint-webpack-plugin": "^2.1.1",
"topojson": "^3.0.2",
"webpack": "^4.46.0"
},
"lint-staged": {
"*.{js,vue}": "npm run lint"
},
"stylelint": {
"rules": {}
}
}