-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
35 lines (35 loc) · 930 Bytes
/
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
{
"name": "simple-drawio-starter",
"version": "0.1.0",
"author": "luffyZh <[email protected]>",
"keywords": [
"drawio",
"react",
"next.js"
],
"scripts": {
"start": "next dev",
"build": "next build",
"prebuild": "yarn gen-drawio",
"prod": "next start",
"drawio-dev": "cd drawio-project/src/main/webapp && serve",
"drawio-build": "cd drawio-project/etc/build && ant",
"gen-drawio": "rm -rf public/drawio && cp -r drawio-project/src/main/webapp public/drawio",
"lint": "next lint",
"analyze": "ANALYZE=true next build"
},
"dependencies": {
"@next/bundle-analyzer": "^11.0.1",
"antd": "^4.16.13",
"next": "^11.0.2-canary.17",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/react": "17.0.15",
"eslint": "^7.32.0",
"eslint-config-next": "11.0.1",
"typescript": "4.3.5"
}
}