-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.56 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
{
"name": "planning-pocker",
"version": "1.0.0",
"description": "gamified technique for estimating development goals in software development",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=development webpack --watch --progress",
"serve": "nodemon server/server.js",
"start": "concurrently --kill-others --raw \"npm run build\" \"npm run serve\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/mtpYa/planning-pocker.git"
},
"keywords": [
"planning",
"scrum",
"poker"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mtpYa/planning-pocker/issues"
},
"homepage": "https://github.com/mtpYa/planning-pocker#readme",
"dependencies": {
"babel-polyfill": "^6.16.0",
"body-parser": "^1.15.2",
"concurrently": "^3.1.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"mongoose": "^4.7.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"morgan": "^1.7.0",
"node-sass": "^3.13.0",
"nodemon": "^1.11.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3"
}
}