-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
67 lines (67 loc) · 1.86 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
{
"private": true,
"name": "@re-editor/core",
"workspaces": [
"packages/*"
],
"description": "",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "eslint packages && lint-staged"
}
},
"lint-staged": {
"packages/**/*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"scripts": {
"test": "eslint packages",
"start": "lerna run start --parallel",
"build": "lerna run build",
"release": "lerna publish --exact --force-publish --no-push -m \"chore(release): publish %s\" --conventional-commits"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wowlusitong/re-editor.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wowlusitong/re-editor/issues"
},
"homepage": "https://github.com/wowlusitong/re-editor#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.4.10",
"babel-eslint": "^10.0.1",
"babel-plugin-import": "^1.11.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.15.2",
"eslint-config-prettier": "^4.1.0",
"eslint-import-resolver-babel-module": "^5.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lerna": "^3.13.1",
"lint-staged": "^8.1.5",
"postcss-cli": "^6.1.2",
"postcss-import": "^12.0.1",
"postcss-nested": "^4.1.2",
"postcss-simple-vars": "^5.0.2",
"prettier": "1.16.4"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0"
}
}