-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "snail-split",
"version": "1.0.0",
"main": "src/index.tsx",
"author": "Amedeo Zucchetti",
"license": "MIT",
"scripts": {
"build": "yarn build:webpack && yarn build:pkg",
"build:pkg": "pkg --out-path ./dist/ ./dist/$npm_package_name-$npm_package_version.js",
"build:webpack": "webpack",
"lint:check": "eslint --ext .js,.ts,.tsx ./src/",
"start": "ts-node src/index.tsx"
},
"devDependencies": {
"nodemon": "^2.0.3",
"pkg": "^4.4.8",
"ts-loader": "^7.0.2",
"ts-node": "^8.9.1",
"typescript": "^3.9.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@types/blessed": "^0.1.17",
"@types/minimist": "^1.2.0",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-blessed": "^0.3.2",
"@types/react-redux": "^7.1.7",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"blessed": "^0.1.81",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.19.0",
"immer": "^6.0.3",
"minimist": "^1.2.5",
"react": "^16.13.1",
"react-blessed": "^0.6.2",
"react-devtools-core": "^3.0.0",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"ws": "^6.0.0"
}
}