This repository was archived by the owner on Nov 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.49 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
{
"name": "vote",
"version": "0.0.0",
"main": "index.ts",
"repository": "[email protected]:per0w/vote.git",
"author": "vladimir <[email protected]>",
"license": "MIT",
"scripts": {
"start": "babel-node --extensions '.ts' index.ts",
"dev": "nodemon",
"build": "tsc",
"lint": "eslint '**/*.ts' --quiet",
"test": "jest -i --config=./jest.config.json",
"format": "prettier --write '**/*.ts'",
"check-types": "tsc"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"redux": "^4.0.1",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/socket.io": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"babel-jest": "^24.8.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"nodemon": "^1.19.0",
"prettier": "^1.17.1",
"typescript": "^3.4.5"
}
}