-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "layout-quick",
"version": "1.0.0",
"description": "使用 flex、grid 等实现的的一些布局 Demo,快速实现页面布局",
"main": "src/index.tsx",
"license": "MIT",
"scripts": {
"dev": "parcel index.html",
"build": "rm -rf ./dist && parcel build --public-url '/layout-quick' index.html",
"lint": "eslint './' --ext '.ts,tsx'",
"gh-pages": "node ./scripts/gh-pages.js",
"deploy": "yarn run lint && yarn run build && yarn run gh-pages"
},
"keywords": [
"flex",
"grid",
"css",
"layout"
],
"dependencies": {
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/marked": "^0.6.5",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/react-router-dom": "^4.3.3",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"eslint": "^5.16.0",
"eslint-plugin-eslint-plugin": "^2.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.0",
"gh-pages": "^2.0.1",
"parcel-bundler": "^1.12.3",
"sass": "^1.20.1",
"typescript": "^3.4.5"
}
}