forked from markusenglund/react-kanban
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.84 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
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
{
"name": "danban",
"version": "0.1.0",
"description": "An open source kanban application created with DABL, React and Redux.",
"engines": {
"node": "12.12.0"
},
"main": "dist/server.js",
"scripts": {
"build": "webpack --mode development",
"build:watch": "webpack --watch --mode development",
"build:prod": "BABEL_ENV=production webpack --mode production",
"start:watch": "nodemon dist/server.js",
"start": "node dist/server.js",
"start:prod": "NODE_ENV=production node dist/server.js",
"analyze-bundle": "BABEL_ENV=production webpack --mode production --profile --json > stats.json && webpack-bundle-analyzer stats.json dist/public -s gzip",
"lint": "eslint --ext .js,.jsx src/",
"format": "prettier --write '**/*.{js,jsx,css,scss,json,md}'"
},
"author": "Markus Englund <markus.s.englund@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.6.3",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"date-fns": "^1.30.1",
"dotenv": "^5.0.1",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"express-session": "^1.17.0",
"express-static-gzip": "^0.3.2",
"helmet": "^3.21.2",
"http-proxy": "^1.18.0",
"jose": "^1.10.1",
"marked": "^0.7.0",
"mini-css-extract-plugin": "^0.4.5",
"morgan": "^1.9.1",
"nested-error-stacks": "^2.1.0",
"node-fetch": "^2.6.0",
"normalizr": "^3.4.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-twitter": "^1.0.4",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-aria-menubutton": "^5.1.1",
"react-autocomplete": "^1.8.1",
"react-beautiful-dnd": "github:yogaboll/react-beautiful-dnd#include-generated",
"react-day-picker": "^7.4.0",
"react-dom": "^16.11.0",
"react-head": "^2.2.0",
"react-icons": "^2.2.7",
"react-modal": "^3.10.1",
"react-onclickoutside": "^6.9.0",
"react-redux": "^5.1.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-switch": "^5.0.1",
"react-textarea-autosize": "^6.1.0",
"redux": "^3.7.2",
"redux-devtools-extension": "^2.13.8",
"serve-favicon": "^2.5.0",
"shortid": "^2.2.15",
"slugify": "^1.3.5"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.2.0",
"@babel/plugin-proposal-decorators": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.6.2",
"autoprefixer": "^8.6.5",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"clean-webpack-plugin": "^0.1.19",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^3.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.10.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^1.1.11",
"ignore-loader": "^0.1.2",
"node-sass": "^4.12.0",
"nodemon": "^1.19.4",
"postcss-loader": "^2.1.6",
"prettier": "^1.18.2",
"sass-loader": "^7.3.1",
"svg-url-loader": "^2.3.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.1.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-manifest-plugin": "^2.2.0",
"webpack-node-externals": "^1.7.2"
}
}