-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "7days-50projects",
"version": "1.0.0",
"description": "This is a derivative of the #50Days50Projects challenge.",
"main": "src/pages/index.tsx",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format:check": "prettier -c \"**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,js,tsx,jsx}\"",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benxene/7days-50projects.git"
},
"keywords": [
"50days50projects",
"challenge"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/benxene/7days-50projects/issues"
},
"homepage": "https://benxene.github.io/7days-50projects",
"dependencies": {
"axios": "^0.21.1",
"next": "^11.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^4.1.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"@types/node": "^14.14.10",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.4",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.29.0",
"eslint-config-next": "^11.0.1",
"eslint-plugin-next": "^0.0.0",
"prettier": "^2.2.1",
"typescript": "^4.1.2"
}
}