forked from antoinejaussoin/retro-board
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "retro-board",
"version": "0.8.1",
"description": "An agile retrospective board - Powering www.retrospected.com",
"main": "index.js",
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"autoprefixer": "6.7.2",
"babel-cli": "6.22.2",
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-jest": "18.0.0",
"babel-loader": "6.2.10",
"babel-plugin-transform-runtime": "6.22.0",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"chalk": "1.1.3",
"classnames": "2.2.5",
"cross-env": "3.1.4",
"css-loader": "0.26.1",
"enzyme": "2.7.1",
"eslint": "3.15.0",
"eslint-config-airbnb": "12.0.0",
"eslint-loader": "1.6.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.9.0",
"express": "4.14.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.10.0",
"flag-icon-css": "2.8.0",
"history": "4.5.1",
"html-webpack-plugin": "2.28.0",
"immutability-helper": "2.1.1",
"jest": "18.1.0",
"json-loader": "0.5.4",
"local-storage": "1.4.2",
"lodash": "4.17.4",
"md5": "2.2.1",
"moment": "2.17.1",
"mongoose": "4.8.2",
"nedb": "1.8.0",
"node-emoji": "1.5.1",
"node-sass": "3.10.1",
"node-uuid": "1.4.7",
"nodemon": "1.11.0",
"normalize.css": "5.0.0",
"postcss-loader": "1.3.0",
"react": "15.4.2",
"react-addons-css-transition-group": "15.4.2",
"react-addons-shallow-compare": "15.4.2",
"react-copy-to-clipboard": "4.2.3",
"react-dom": "15.4.2",
"react-ga": "2.1.2",
"react-hot-loader": "3.0.0-beta.5",
"react-redux": "5.0.2",
"react-router": "3.0.2",
"react-router-redux": "4.0.8",
"react-toolbox": "1.3.4",
"redux": "3.6.0",
"redux-actions": "1.2.1",
"redux-devtools": "3.3.2",
"redux-devtools-dock-monitor": "1.1.1",
"redux-devtools-log-monitor": "1.2.0",
"redux-logger": "2.8.1",
"redux-saga": "0.14.3",
"redux-saga-testing": "1.0.2",
"redux-thunk": "2.2.0",
"reselect": "2.5.4",
"sass-loader": "5.0.1",
"shortid": "2.2.6",
"socket.io": "1.7.2",
"socket.io-client": "1.7.2",
"style-loader": "0.13.1",
"toolbox-loader": "0.0.3",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-bundle-size-analyzer": "2.5.0",
"webpack-dev-server": "1.16.2"
},
"devDependencies": {},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"start-ui": "webpack-dev-server --progress --inline --hot",
"start-server": "nodemon ./server/server-dev.js",
"start-server-debug": "node-debug -p 9090 ./server/server-dev.js",
"start": "cross-env NODE_ENV=production PORT=8080 nodemon .",
"clean": "cross-env rm -rf build && cross-env rm -rf assets && cross-env mkdir build && cross-env mkdir assets",
"build-server": "babel -d build server",
"build": "cross-env npm run lint && cross-env npm run build-server && cross-env NODE_ENV=production webpack -p --config webpack.prod.config.js --progress --colors",
"analyse": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js --json | webpack-bundle-size-analyzer",
"lint": "eslint --ext .js --ext .jsx ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoinejaussoin/retro-board.git"
},
"keywords": [
"agile",
"retrospective",
"board",
"redux",
"react",
"universal",
"socket.io",
"reselect",
"SPA",
"single page application"
],
"author": "Antoine Jaussoin",
"license": "ISC",
"bugs": {
"url": "https://github.com/antoinejaussoin/retro-board/issues"
},
"homepage": "http://www.retrospected.com",
"jest": {
"collectCoverage": true,
"testRegex": "__tests__/.*\\-test.js$"
}
}