-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "code.sydney",
"version": "0.0.1",
"description": "DCCAJS",
"author": "EnvyTheme.com",
"license": "ISC",
"main": "index.js",
"scripts": {
"dev": "node server.js -p $PORT",
"build": "next build",
"lint": "eslint .",
"pretty": "pretty-quick",
"start": "NODE_ENV=production node server.js -p $PORT"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"browser": true,
"node": true,
"es6": true,
"jest": true
}
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-optipng": "^7.0.0",
"imagemin-svgo": "^7.0.0",
"next": "^9.0.5",
"next-compose-plugins": "^2.2.0",
"next-fonts": "^0.18.0",
"next-optimized-images": "^2.5.3",
"next-redux-wrapper": "^3.0.0",
"next-routes": "^1.4.2",
"next-seo": "^2.0.0",
"next-videos": "^1.1.0",
"node-sass": "^4.12.0",
"react": "^16.9.0",
"react-accessible-accordion": "^3.0.0",
"react-dom": "^16.9.0",
"react-image-lightbox": "^5.1.0",
"react-masonry-component": "^6.2.1",
"react-modal-video": "^1.2.2",
"react-owl-carousel3": "^2.2.5",
"react-preloading-screen": "^1.0.2",
"react-redux": "^7.1.0",
"react-stripe-checkout": "^2.6.3",
"react-toastify": "^5.3.2",
"react-visibility-sensor": "^5.1.1",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"stripe": "^7.8.0",
"wowjs": "^1.1.3"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0"
}
}