-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
68 lines (68 loc) · 1.8 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
{
"name": "@elastic/next-eui-starter",
"private": true,
"description": "Start building protoypes quickly with the Next.js EUI Starter",
"version": "1.0.0",
"author": "Rory Hunter <rory@elastic.co>",
"keywords": [
"next",
"kibana",
"eui",
"elastic",
"typescript"
],
"engines": {
"node": ">=12.22.0"
},
"license": "Apache-2.0",
"scripts": {
"analyze": "ANALYZE=true yarn build",
"build": "yarn lint && rm -f public/themes/*.min.css && next build",
"build-docs": "yarn lint && bash scripts/update-docs.sh",
"dev": "next",
"lint": "tsc && next lint",
"start": "next start",
"test-docs": "yarn lint && bash scripts/test-docs.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/next-eui-starter"
},
"bugs": {
"url": "https://github.com/elastic/next-eui-starter/issues"
},
"dependencies": {
"@elastic/eui": "^68.0.0",
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"core-js": "^3.25.1",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@elastic/datemath": "^5.0.3",
"@emotion/babel-plugin": "^11.10.2",
"@next/bundle-analyzer": "^12.3.1",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"copy-webpack-plugin": "^10.0.0",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"iniparser": "^1.0.5",
"moment": "^2.29.4",
"next": "^12.3.1",
"null-loader": "^4.0.1",
"prettier": "^2.5.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.43.5",
"serve": "^13.0.2",
"typescript": "^4.5.2",
"typescript-plugin-css-modules": "^3.4.0"
},
"resolutions": {
"trim": "0.0.3"
}
}