-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.51 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
{
"name": "tic-tac-toe",
"version": "1.0.0",
"description": "Tic Tac Toe",
"main": "./out/server/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sandy081/tic-tac-toe.git"
},
"author": "sandy081",
"license": "MIT",
"scripts": {
"compile": "concurrently -n server,client -p name \"tsc -p ./src/server --outDir ./out/server\" \"tsc -p ./src/client --outDir ./out/client\"",
"watch": "concurrently -n server,client -p name \"tsc --watch -p ./src/server --outDir ./out/server\" \"tsc --watch -p ./src/client --outDir ./out/client\"",
"test": "mocha"
},
"dependencies": {
"babel-plugin-transform-react-jsx": "^6.6.5",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"body-parser": "^1.18.2",
"concurrently": "^3.6.0",
"bootstrap": "^3.3.6",
"browserify": "^13.0.0",
"browserify-single-file": "^0.3.0",
"express": "^4.13.4",
"express-handlebars": "^2.0.0",
"jquery": ">=3.0.0",
"mongodb": "^2.2.31",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"requirejs": "^2.1.22",
"typescript": "^2.5.3"
},
"devDependencies": {
"@types/express": "^4.0.37",
"@types/express-handlebars": "0.0.29",
"@types/mongodb": "^2.2.11",
"@types/node": "^8.0.31",
"@types/typescript": "^2.0.0",
"tslint": "^3.15.1",
"@types/mocha": "^2.2.44",
"mocha": "^4.0.1"
}
}