-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.95 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
{
"name": "next-drupal-interface-18n",
"version": "1.0.0-alpha1",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/next_interface_18n",
"repository": {
"type": "git",
"url": "https://git.drupalcode.org/project/next_interface_18n"
},
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --jsx 'React.createElement' --jsxImportSource react --globals react/jsx-runtime=jsx",
"dev": "microbundle watch --jsx 'React.createElement' --jsxImportSource react --globals react/jsx-runtime=jsx --compress false",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@next/eslint-plugin-next": "12.2.3",
"@types/jest": "^29.2.2",
"@types/node": "^18.0.6",
"@types/react": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.30.0",
"eslint-config-next": "^12.2.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.0",
"jest": "^29.2.2",
"microbundle": "^0.15.0",
"next": "^13.0.7",
"next-drupal": "^1.5.0",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"next": "^13.0.0",
"next-drupal": "^1.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"axios": "^0.21.0",
"chalk": "^4.1.0",
"fs": "^0.0.1-security",
"gulp-sort": "^2.0.0",
"i18next-scanner": "^3.0.0",
"typescript": "^4.1.2",
"vinyl-fs": "^3.0.3"
}
}