forked from silverstripe/nextjs-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.62 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": "@silverstripe/nextjs-toolkit",
"version": "0.1.8",
"description": "Client-side for building NextJS websites powered by a Silverstripe CMS data source",
"main": "index.js",
"types": "lib-es5/index.d.ts",
"engines": {
"node": "18"
},
"scripts": {
"build": "tsc && tsc -t ES5 --outDir lib-es5",
"format": "prettier --write src/**/*.{ts,tsx}",
"watch": "tsc --watch & tsc && tsc -t ES5 --outDir lib-es5 --watch",
"publish-local": "npm run prepublishOnly && npm version prerelease --no-git-tag-version && npm pack && mkdirp .tarballs && mv gatsby-source-silverstripe-*.tgz .tarballs/ && echo 'published to .tarballs/'",
"prepublishOnly": "npm run build"
},
"keywords": [
"nextjs",
"silverstripe"
],
"author": "Aaron Carlino <[email protected]>",
"license": "0BSD",
"dependencies": {
"@babel/parser": "^7.15.3",
"@babel/traverse": "^7.15.4",
"chalk": "^4.1.0",
"crypto-browserify": "^3.12.0",
"dotenv": "^10.0.0",
"file-system-cache": "^1.0.5",
"glob": "^7.1.7",
"gql-compress": "^2.0.24",
"graphql": "^15.5.0",
"html-react-parser": "^1.2.8",
"node-fetch": "^2.6.1"
},
"peerDependencies": {
"next": "^13.4.6",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/next": "^9.0.0",
"@types/node": "^18.16.0",
"@types/node-fetch": "^2.5.12",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-config-sanity": "^6",
"prettier": "^2.1.2",
"typescript": "^4.2.3"
}
}