-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.93 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "react-table-editor",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run dev:hot",
"dev:hot": "webpack-dev-server --progress --color",
"build": "set NODE_ENV=production&& webpack --display-modules --display-chunks --progress --color --bail",
"lint": "eslint --ext .jsx,.js --format=node_modules/eslint-formatter-pretty src/",
"lint:cli": "eslint --ext .jsx,.js --format=node_modules/eslint-formatter-pretty",
"lint:autofix": "eslint --fix --ext .jsx,.js --format=node_modules/eslint-formatter-pretty src/",
"lint:styles": "stylelint src/**/*.scss --syntax=scss",
"lint-styles:autofix": "stylelint src/**/*.scss --syntax=scss --fix",
"test:orpho": "yaspeller -e .md,.html ./src/",
"translations:check": "node ./scripts/translationcheck.js",
"precommit": "lint-staged",
"lint-staged": "lint-staged",
"patch": "gulp patch",
"minor": "gulp minor",
"major": "gulp major",
"semver:reset": "gulp semver:reset"
},
"lint-staged": {
"*.js": [
"prettier --write",
"npm run lint",
"npm run lint:autofix",
"git add"
],
"*.jsx": [
"prettier --write",
"npm run lint",
"npm run lint:autofix",
"git add"
],
"*.scss": [
"npm run lint:styles",
"npm run lint-styles:autofix",
"git add"
],
"*.css": [
"stylelint src/**/*.css",
"stylelint src/**/*.css --fix",
"git add"
]
},
"author": "Dmytro Halimov",
"contributors": [
"Dmytro Halimov <dmytro.halimov@gmail.com>"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/DmitriyVlad/react-editor-table.git"
},
"prettier": {
"singleQuote": true,
"eslintIntegration": true,
"stylelintIntegration": true
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"es6-promise": "^4.1.1",
"normalize.css": "^7.0.0",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.1.1",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"gulp": "^3.9.1",
"gulp-bump": "^2.8.0",
"happypack": "^4.0.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"image-webpack-loader": "^3.4.2",
"imports-loader": "^0.7.1",
"lint-staged": "^4.2.3",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prettier": "^1.7.4",
"prettier-eslint": "^8.2.0",
"react-hot-loader": "^3.0.0",
"require-dir": "^0.3.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"stylelint": "^8.2.0",
"stylelint-config-sass-guidelines": "^3.1.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-selector-bem-pattern": "^2.0.0",
"stylelint-webpack-plugin": "^0.9.0",
"url-loader": "^0.6.2",
"webpack": "^3.6.0",
"webpack-archive-plugin": "^3.0.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.9.1",
"webpack-manifest-plugin": "^1.3.2",
"yaspeller": "^4.0.0"
}
}