-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "adotpets-nuxt",
"version": "0.2.0",
"description": "Adoption Platatform",
"author": "Lucas Leandro",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"contributors": "./node_modules/.bin/all-contributors",
"release": "./node_modules/.bin/standard-version"
},
"dependencies": {
"@nuxtjs/axios": "^5.3.6",
"cross-env": "^5.2.0",
"express": "^4.16.4",
"nuxt": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@nuxtjs/tailwindcss": "^1.0.0",
"all-contributors-cli": "^6.8.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"husky": "^3.0.3",
"nodemon": "^1.18.9",
"standard-version": "^7.0.0"
},
"standard-version": {
"skip": {
"commit": true,
"tags": true
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && ./node_modules/commitizen/bin/git-cz --hook",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}