-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 2.17 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
{
"name": "devtodo",
"version": "0.2.0",
"description": "To-do list for Chrome DevTools.",
"author": "Dutiyesh Salunkhe",
"license": "MIT",
"scripts": {
"extension:dev": "webpack --config webpack/extension/dev.config.js",
"extension:prod": "webpack --env.NODE_ENV=production --config webpack/extension/prod.config.js",
"web:dev": "webpack-dev-server --config webpack/web/dev.config.js",
"web:prod": "webpack --env.NODE_ENV=production --config webpack/web/prod.config.js",
"lint": "npm run es-lint && npm run style-lint",
"lint:fix": "npm run es-lint:fix && npm run style-lint:fix",
"es-lint": "eslint --ext .js app",
"es-lint:fix": "eslint --ext .js app --fix",
"style-lint": "stylelint app/style/**/*.scss --cache --cache-location .stylelintcache/",
"style-lint:fix": "stylelint app/style/**/*.scss --fix"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.6.2",
"react": "^16.7.0-alpha.0",
"react-dom": "^16.7.0-alpha.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.3",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"stylelint": "^9.8.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.4.0",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
}
}