This repository has been archived by the owner on Jul 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.44 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
68
69
70
71
72
73
74
{
"name": "ttrss-reader",
"version": "1.2.1",
"description": "Tiny Tiny RSS Reader",
"author": "Dzikri Aziz",
"repository": "https://github.com/kucrut/ttrss-reader",
"main": "js/bundle.js",
"license": "GPL-2.0",
"scripts": {
"lint:js": "eslint webpack app",
"lint:css": "stylelint app/css/**/*.css --config app/css/.stylelintrc.json",
"lint": "npm run lint:js && npm run lint:css",
"clean": "rimraf public/assets",
"start": "node webpack/dev-server.js",
"build": "npm run lint && npm run clean && NODE_ENV=production webpack --colors --config ./webpack/prod-config.js"
},
"dependencies": {
"axios": "^0.11.0",
"babel": "^6.5.2",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-react-constant-elements": "^6.8.0",
"babel-plugin-transform-react-inline-elements": "^6.8.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.6",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"classnames": "^2.2.5",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"date-fns": "^1.0.0-rc21",
"es6-promise": "^3.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"he": "^1.1.0",
"inline-environment-variables-webpack-plugin": "0.0.2",
"lodash": "^4",
"postcss-fontpath": "^0.3.0",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.9.1",
"postcss-mixins": "^4.0.1",
"postcss-nested": "^1.0.0",
"postcss-reporter": "^1.3.3",
"postcss-simple-vars": "^1.2.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-helmet": "^3.1.0",
"react-redux": "^4.4.5",
"react-swipeable": "^3.4.0",
"react-transform-hmr": "^1.0.4",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.2.4",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"stylelint": "^6.3.3",
"stylelint-config-standard": "^7.0.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0"
}
}