-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
52 lines (52 loc) · 1.6 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
{
"name": "codewonders",
"version": "1.5.0",
"private": false,
"license": "MIT",
"repository": "git://github.com/adenekan41/codewonders.git",
"description": "Adenekan Wonderful's Website",
"author": "Adenekan Wonderful <[email protected]> (https://codewonders.dev)",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "npm run build && npm run export",
"lint": "eslint .",
"fix": "eslint --fix .",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"check-packages": "yarn clean && yarn compile && yarn test && yarn lint"
},
"dependencies": {
"codewonders-helpers": "^1.1.0",
"framer-motion": "^10.12.12",
"next": "13.4.2",
"next-page-transitions": "^1.0.0-beta.2",
"next-pwa": "^5.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga": "^2.7.0",
"react-helmet": "^5.2.1",
"react-progressive-image": "^0.6.0",
"scoutbar": "^1.1.9",
"styled-components": "^4.4.1",
"url-loader": "^2.2.0"
},
"devDependencies": {
"@types/react": "^18.2.6",
"@types/styled-components": "^5.1.26",
"babel-plugin-styled-components": "^2.1.3",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "1.19.1",
"typescript": "^5.0.4"
}
}