-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.17 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
{
"name": "tictactoe",
"version": "1.0.0",
"description": "A fun little tic tac toe game",
"main": "index.js",
"private": true,
"engines": {
"node": "8.11.2",
"npm": "6.0.1"
},
"scripts": {
"postinstall": "npm run coverage && npm run client:release && npm run server:release && npm run docs",
"client:build": "cross-env NODE_ENV=development webpack",
"client:release": "cross-env NODE_ENV=production webpack",
"server:tslint": "tslint --project tsconfig.json --format verbose",
"server:release": "rimraf build/server && npm run server:tslint && tsc",
"release": "npm run postinstall",
"coverage": "nyc npm test",
"docs": "typedoc --options typedoc.json --tsconfig tsconfig.typedoc.json",
"test": "mocha",
"watch": "cross-env NODE_ENV=development WATCH=true nodemon server/index.ts",
"start": "node build/server/index.js",
"nodemon": "cross-env NODE_ENV=development nodemon server/index.ts",
"clean": "rimraf build && rimraf node_modules && rimraf .coverage && rimraf .nyc_output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corinnaerin/tictactoe.git"
},
"author": "Corinna Kuhn",
"license": "MIT",
"bugs": {
"url": "https://github.com/corinnaerin/tictactoe/issues"
},
"homepage": "https://github.com/corinnaerin/tictactoe#readme",
"dependencies": {
"express": "^4.16.3",
"fancy-log": "^1.3.2",
"http-errors": "^1.6.3"
},
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/express": "^4.11.1",
"@types/express-serve-static-core": "^4.11.1",
"@types/mime": "^2.0.0",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.0",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/react-router": "^4.0.25",
"@types/react-router-dom": "^4.2.6",
"autoprefixer": "^8.5.1",
"chai": "^4.1.2",
"chai-enzyme": "^0.8.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.5",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.1.1",
"nodemon": "^1.17.4",
"nyc": "^11.8.0",
"postcss-loader": "^2.1.5",
"react": "^16.3.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.1.3",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"rimraf": "^2.6.2",
"sinon": "^5.0.7",
"sinon-chai": "^3.0.0",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.5.6",
"style-loader": "^0.21.0",
"stylelint": "^9.2.1",
"stylelint-config-standard": "^18.2.0",
"supertest": "^3.1.0",
"ts-loader": "^4.3.0",
"ts-node": "^6.0.3",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-loader": "^3.6.0",
"tslint-react": "^3.6.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.2"
}
}