forked from ascoders/gaea-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "gaea-editor",
"version": "2.3.2",
"description": "",
"main": "dist/src/index.js",
"types": "src/index.tsx",
"scripts": {
"start": "pri dev",
"build": "pri build",
"preview": "pri preview",
"analyse": "pri analyse",
"test": "pri test",
"prepublishOnly": "npm run build",
"lint": "echo 'Pre-commit checks...' && tslint --fix './src/**/*.?(ts|tsx)'",
"prettier": "prettier --write './src/**/*.?(ts|tsx)'",
"format": "tslint --fix './src/**/*.?(ts|tsx)' && prettier --write './src/**/*.?(ts|tsx)'",
"docs": "pri docs"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"dependencies": {
"antd": "^3.6.2",
"dob": "^2.5.9",
"dob-react": "^2.4.15",
"gaea-basic-components": "^1.1.0",
"gaea-render": "^1.0.15",
"lodash": "^4.17.10",
"react-color": "^2.14.1",
"sortablejs": "^1.7.0",
"styled-components": "^3.3.2"
},
"devDependencies": {
"@types/classnames": "*",
"pri": "^0.9.9"
},
"author": "",
"license": "ISC",
"pri": {
"type": "component"
}
}