-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.17 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
{
"name": "pokedex",
"version": "0.1.0",
"description": "Nuxt.js Pokédex",
"author": "Maarten Van Hoof",
"private": true,
"scripts": {
"dev": "run-p dev:**",
"dev:nuxt": "nuxt-ts -r dotenv/config",
"dev:sw": "webpack --watch --config service-workers/webpack.config.js",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"lint": "run-p dev:**",
"lint:es": "eslint --ext .ts,.vue --ignore-path .gitignore .",
"lint:style": "stylelint .",
"generate": "nuxt generate"
},
"lint-staged": {
"*.{js,vue}": "npm run lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.4.0",
"@nuxtjs/axios": "^5.9.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@tensorflow/tfjs": "^1.7.2",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"fuse.js": "^5.1.0",
"idb": "^5.0.2",
"lodash": "^4.17.15",
"multiparty": "^4.2.1",
"nuxt": "^2.0.0",
"pokeapi-sdk-typescript-axios": "git+https://github.com/vanhoofmaarten/pokeapi-sdk-typescript-axios.git#8ca3b768d4ffc5fb267053d3fc8f7787dd6fb78f",
"semver-utils": "^1.1.4"
},
"devDependencies": {
"@nuxt/typescript-build": "^0.6.0",
"@nuxtjs/eslint-config-typescript": "^1.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@nuxtjs/tailwindcss": "^1.0.0",
"@types/connect": "^3.4.33",
"@types/multiparty": "0.0.32",
"@types/node": "^13.9.5",
"@types/webpack": "^4.41.9",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.0",
"lint-staged": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"stylelint": "^13.2.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recess-order": "^2.0.4",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.0.0",
"stylelint-prettier": "^1.1.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack-cli": "^3.3.11"
}
}