-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.55 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
{
"name": "aplidex",
"version": "0.1.0",
"description": "technical test for the frontend position at apli, create a simple info page fetching data from pokeapi.co",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"standard": "echo '- Running standard -' && standard --fix && echo '- Standard OK -'",
"hook:precommit": "npm run standard"
},
"husky": {
"hooks": {
"pre-commit": "npm run hook:precommit"
}
},
"standard": {
"globals": [
"fetch"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/rurickdev/aplidex.git"
},
"keywords": [
"pokedex",
"pokemon",
"pokeapi",
"nextjs",
"now",
"pwa",
"swp",
"bulma",
"sass",
"nodejs",
"react"
],
"author": "Rurick M. Poisot aka RurickDev",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/rurickdev/aplidex/issues"
},
"homepage": "https://gitlab.com/rurickdev/aplidex#readme",
"dependencies": {
"@zeit/next-sass": "^1.0.1",
"chart.js": "^2.9.3",
"classnames": "^2.2.6",
"dotenv": "^8.2.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.2.0",
"node-sass": "^4.13.1",
"placeholder-loading": "^0.2.5",
"pokedex-promise-v2": "^3.2.0",
"react": "^16.12.0",
"react-chartjs-2": "^2.8.0",
"react-dom": "^16.12.0",
"react-virtualized-auto-sizer": "^1.0.2",
"react-window": "^1.8.5"
},
"devDependencies": {
"bulma": "^0.8.0",
"husky": "^4.0.10",
"standard": "^14.3.1"
}
}