-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.22 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
{
"name": "boilerplate_v2",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@types/bluebird": "^3.0.36",
"@types/body-parser": "^0.0.33",
"@types/config": "^0.0.31",
"@types/dojo": "^1.9.36",
"@types/es6-shim": "^0.31.32",
"@types/express": "^4.0.34",
"@types/immutability-helper": "^2.0.15",
"@types/lodash": "^4.14.44",
"@types/material-ui": "^0.16.44",
"@types/mongodb": "^2.1.36",
"@types/mongoose": "^4.7.1",
"@types/morgan": "^1.7.32",
"@types/node": "^6.0.52",
"@types/pug": "^2.0.3",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.19",
"@types/react-tap-event-plugin": "^0.0.30",
"@types/socket.io": "^1.4.27",
"@types/socket.io-client": "^1.4.29",
"@types/supertest": "^2.0.0",
"@types/supertest-as-promised": "^2.0.32",
"@types/whatwg-fetch": "^0.0.33",
"awesome-typescript-loader": "^3.0.0-beta.17",
"bitbar-webpack-progress-plugin": "^0.1.3",
"body-parser": "^1.15.2",
"config": "^1.24.0",
"es6-shim": "^0.35.2",
"express": "^4.14.0",
"express-validator": "^3.1.0",
"formsy-material-ui": "^0.5.3",
"formsy-react": "^0.19.0",
"immutability-helper": "^2.0.0",
"lodash": "^4.17.2",
"material-ui": "^0.16.5",
"mongodb": "^2.2.16",
"mongoose": "^4.7.3",
"morgan": "^1.7.0",
"pug": "^2.0.0-beta6",
"react": "^15.4.1",
"react-copy-to-clipboard": "^4.2.3",
"react-dom": "^15.4.1",
"react-tap-event-plugin": "^2.0.1",
"socket.io": "^1.7.2",
"socket.io-client": "^1.7.2",
"source-map-loader": "^0.1.5",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.2",
"typescript": "next",
"webpack": "^1.14.0",
"ava": "^0.17.0",
"concurrently": "^3.1.0",
"tslint": "^4.1.1"
},
"scripts": {
"start": "tsc && webpack && node lib/server/index.js",
"dev": "concurrently \"tsc\" \"webpack\" && node lib/server/index.js",
"node": "tsc && node lib/server/index.js",
"nodewatch": "tsc -w",
"watch": "concurrently --kill-others \"tsc -w\" \"webpack -w\"",
"test": "tsc && ava"
},
"devDependencies": {},
"jspm": {
"directories": {
"baseURL": "dist"
},
"dependencies": {},
"devDependencies": {}
}
}