forked from ascoders/gaea-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "gaea-editor",
"version": "2.1.8",
"description": "",
"main": "built/src/index.js",
"types": "src/index.ts",
"run-react": {
"entrys": ["src/develop-entry/index"],
"productionEntrys": ["src/index"],
"rules": [
{
"test": ".css$",
"use": ["style-loader", "css-loader"]
}
],
"production": {
"path": "built",
"filename": "bundle.js"
}
},
"scripts": {
"start": "run-react develop",
"tslint": "tslint './src/**/*.?(ts|tsx)'",
"prepublish":
"rm -rf built && tsc && babel built --out-dir built && npm run build",
"build": "run-react production"
},
"dependencies": {
"@types/lz-string": "^1.3.32",
"@types/node": "^7.0.43",
"@types/react-color": "^2.13.0",
"antd": "^3.1.4",
"dependency-inject": "^1.1.4",
"dob": "^2.5.7",
"dob-react": "^2.4.7",
"gaea-basic-components": "^1.0.18",
"gaea-render": "^1.0.15",
"lodash": "^4.17.4",
"lz-string": "^1.4.4",
"react": "^16.0.0",
"react-color": "^2.13.8",
"react-dom": "^16.0.0",
"sortablejs": "^1.6.1",
"styled-components": "^2.1.2"
},
"devDependencies": {
"@types/classnames": "*",
"@types/lodash": "*",
"@types/react": "*",
"@types/react-dom": "*",
"@types/webpack": "*",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.28.9",
"pre-commit": "^1.2.2",
"run-react": "^2.2.3",
"style-loader": "^0.19.1",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"webpack": "^3.6.0"
},
"author": "",
"license": "ISC",
"pre-commit": ["tslint"]
}