-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.1 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
74
75
76
77
78
79
{
"name": "poc-for-aistudios-with-cms",
"version": "1.0.0",
"description": "Proof of Concept for AI Studios API with CMS(Wordpress)",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rimraf .next node_modules",
"generate": "gqty generate",
"format": "prettier --write 'src/**/*.{js,jsx,md,mdx,css,scss}'",
"format:check": "prettier --check 'src/**/*.{js,jsx,md,mdx,css,scss}'",
"wp-env": "wp-env",
"prepare": "husky install"
},
"dependencies": {
"@faustjs/core": "^0.15.2",
"@faustjs/next": "^0.15.3",
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.27.2",
"gqty": "^2.2.0",
"mongoose": "^6.3.3",
"next": "^12.1.0",
"next-redux-wrapper": "^7.0.5",
"normalize.css": "^8.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hook-form": "^7.31.1",
"react-icons": "^4.3.1",
"react-redux": "^8.0.1",
"react-responsive-carousel": "^3.2.23",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.1.3",
"sharp": "^0.30.3",
"use-debounce": "^7.0.1"
},
"keywords": [
"React",
"Next.js",
"AI Studios",
"Wordpress",
"Docker",
"Mongo DB",
"Faust.js",
"Headless CMS"
],
"author": "imjlk",
"license": "ISC",
"bugs": {
"url": "https://github.com/imjlk/poc-for-aistudios-with-cms/issues"
},
"homepage": "https://github.com/imjlk/poc-for-aistudios-with-cms#readme",
"devDependencies": {
"@gqty/cli": "^3.1.0",
"@wordpress/base-styles": "^4.1.1",
"@wordpress/block-library": "^7.0.0",
"@wordpress/env": "^4.6.0",
"dotenv-flow": "^3.2.0",
"eslint": "8.9.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"sass": "^1.49.8"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,jsx,md,mdx,css,scss}": "prettier --write"
}
}