-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "react-test",
"version": "1.0.0",
"description": "My attempt to move https://teropa.info/blog/2015/09/10/full-stack-redux-tutorial.html to Typescript with full type safety.",
"main": "index.js",
"scripts": {
"start": "ts-node index.ts",
"test": "mocha --compilers ts:ts-node/register --require ./test/test_helper.ts --recursive",
"test:watch": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/JazzXP/voting-server.git"
},
"keywords": ["Typescript", "React", "Redux", "React-Redux"],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^8.0.17",
"@types/socket.io": "^1.4.29",
"chai": "^4.0.2",
"chai-immutable": "^1.6.0",
"mocha": "^3.4.2",
"ts-node": "^3.3.0",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"immutable": "^3.8.1",
"redux": "^3.7.1",
"socket.io": "^2.0.3"
}
}