-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.73 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
{
"name": "minbin",
"version": "0.2.4",
"description": "A minimal set of tools",
"scripts": {
"start": "webpack-dev-server --mode development --hot --inline",
"build": "npm run clean && webpack --mode production --progress",
"clean": "rm -rf dist",
"format": "tslint -p . --fix && prettier --write 'src/**/*.{ts,tsx,css}'",
"lint": "tslint -p . && prettier --list-different 'src/**/*.{ts,tsx,css}'",
"postbuild": "rsync -r --ignore-existing public/* dist",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ydlamba/minbin.git"
},
"author": "Yash Dev Lamba <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ydlamba/minbin/issues"
},
"homepage": "https://github.com/ydlamba/minbin#readme",
"devDependencies": {
"@types/node": "^10.11.0",
"@types/react": "^16.4.14",
"autoprefixer": "^9.1.5",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^1.0.0",
"gh-pages": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.14.3",
"style-loader": "^0.23.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3",
"webpack": "^4.20.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"react": "^16.5.2",
"react-clipboard.js": "^2.0.1",
"react-dom": "^16.5.2",
"react-feather": "^1.1.3",
"react-ga": "^2.5.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.3.0"
}
}