-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 KB
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
{
"name": "brisket",
"version": "1.0.3",
"description": "Web frontend for beefboard",
"author": "Oliver Bell",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"test": "jest",
"acceptance": "./run_acceptance.sh",
"acceptance-update": "./run_acceptance.sh update",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix .",
"jest": "jest"
},
"dependencies": {
"@fortawesome/free-regular-svg-icons": "^5.5.0",
"@fortawesome/free-solid-svg-icons": "^5.5.0",
"@nuxtjs/axios": "^5.0.0",
"cookie-universal-nuxt": "^2.0.5",
"cross-env": "^5.2.0",
"email-validator": "^2.0.4",
"express": "^4.16.3",
"nuxt": "^2.2.0",
"nuxt-fontawesome": "^0.3.0",
"vue-flickity": "^1.1.2",
"vue-gallery": "^1.5.0",
"vue-js-modal": "^1.3.26",
"vue-moment": "^4.0.0",
"vue-textarea-autosize": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@vue/test-utils": "^1.0.0-beta.25",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^23.6.0",
"eslint": "^5.0.1",
"eslint-config-prettier": "^3.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-vue": "^4.0.0",
"flush-promises": "^1.0.0",
"husky": "^1.1.3",
"inject-loader": "^4.0.1",
"jest": "^23.6.0",
"jest-image-snapshot": "^2.7.0",
"jest-serializer-vue": "^2.0.2",
"lint-staged": "^8.0.4",
"nodemon": "^1.18.7",
"prettier": "1.14.3",
"puppeteer": "^1.11.0",
"supertest": "^3.3.0",
"vue": "^2.5.17",
"vue-jest": "^2.6.0",
"vuex": "^3.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
}
}