-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.6 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.6 KB
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
68
69
70
71
{
"name": "@wikia/post-editor",
"version": "1.2.2",
"main": "dist/post-editor.min.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Wikia/post-editor"
},
"scripts": {
"start": "yarn clean && yarn dev",
"dev": "cross-env NODE_ENV=development webpack-serve ./webpack.config.js",
"build": "yarn build:webpack",
"build:webpack": "cross-env NODE_ENV=production webpack",
"clean": "rimraf dist",
"lint:css": "yarn stylelint \"src/**/*.{css,scss}\"",
"lint:fix": "yarn stylelint --fix \"client/**/*.{css,scss}\"",
"lint:js": "eslint --cache .",
"lint": "yarn lint:js && yarn lint:css",
"prepublishOnly": "yarn build",
"release:major": "git checkout master && git pull && yarn build && git add . && yarn version --new-version major && git push --follow-tags",
"release:minor": "git checkout master && git pull && yarn build && git add . && yarn version --new-version minor && git push --follow-tags",
"release:patch": "git checkout master && git pull && yarn build && git add . && yarn version --new-version patch && git push --follow-tags",
"release": "yarn release:patch",
"test": "yarn lint"
},
"dependencies": {
"debounce": "^1.2.0",
"design-system": "https://github.com/Wikia/design-system.git#15.1.2",
"preact": "^8.2.9",
"preact-portal": "^1.1.3",
"quill": "^1.3.6"
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-preact": "^1.1.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"cssnano": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-standard-preact": "^1.1.6",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"postcss-loader": "^2.1.4",
"preact-svg-loader": "^0.2.1",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"sass-resources-loader": "^1.3.3",
"style-loader": "^0.21.0",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.3",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-serve": "^2.0.2"
}
}