-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "@conversiondigital/headless-basics-data",
"type": "module",
"main": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"assets",
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx",
"**/*.css",
"tsconfig.json"
],
"version": "1.1.2",
"author": "Conversion Digital",
"license": "ISC",
"keywords": [],
"scripts": {
"clean": "rm -rf dist && find src -name '*.d.ts' -delete",
"lint": "eslint \"src/**/*.{ts,tsx}\" --fix --ignore-pattern \"**/*.stories.*\"",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
"build": "pnpm run clean && pnpm run build:types",
"test": "jest"
},
"dependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.24.0",
"@babel/preset-env": "7.24.0",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@types/jest": "29.5.12",
"@types/node": "20",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/uuid": "10.0.0",
"autoprefixer": "10.4.17",
"babel-plugin-add-import-extension": "1.6.0",
"babel-plugin-file-loader": "2.0.0",
"cheerio": "^1.0.0",
"clsx": "2.1.0",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"crypto-js": "^4.2.0",
"css-loader": "6.8.1",
"jest": "29.7.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-jest": "29.1.4",
"typescript": "^5.6.3",
"sanity": "latest",
"uuid": "9.0.1",
"next": "16.0.10"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@typescript-eslint/eslint-plugin": "8.24.0",
"eslint": "9.1.0"
},
"peerDependencies": {
"react": "^18.0 || ^19.0",
"react-dom": "^18.0 || ^19.0"
}
}