-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.37 KB
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
{
"name": "ls",
"version": "package.json",
"main": "dist/index.js",
"license": "MIT",
"private": true,
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"src/**/{*.ts,*.tsx}": [
"prettier --write",
"tslint --project tsconfig.json --fix",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"build:dev": "webpack --env.dev",
"build:prod": "webpack --env.prod",
"pages": "yarn build:prod && ./shell/copy-dist.sh",
"dev": "webpack-dev-server --config webpack.config.js --env.dev --hot --inline --host 0.0.0.0",
"format": "prettier --write \"src/**/{*.ts,*.tsx}\"",
"lint": "tslint --project tsconfig.json --fix"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"csstips": "^0.2.2",
"package.json": "^2.0.1",
"react": "^16.2.0",
"react-blockies": "^1.2.2",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-observable": "^0.16.0",
"rxjs": "^5.5.0",
"sweetalert2": "^7.18.0",
"typestyle": "^1.4.3",
"web3": "1.0.0-beta.33"
},
"devDependencies": {
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-router": "^4.0.22",
"@types/react-router-dom": "^4.2.4",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"clean-webpack-plugin": "^0.1.16",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^4.2.3",
"prettier": "1.7.4",
"style-loader": "^0.18.2",
"ts-loader": "^3.5.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"typedoc": "^0.11.1",
"typedoc-plugin-markdown": "^1.0.14",
"typescript": "^2.7.2",
"url-loader": "^0.5.9",
"webpack": "^2.2.0 || ^3.0.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-server": "^2.7.1",
"webpack-plugin-hash-output": "^1.3.0",
"workbox-webpack-plugin": "^2.0.1"
},
"description": "json file",
"repository": "git@github.com:swapnilraj/EBeth-frontend.git",
"author": "CHeffernan087 <CHeffernan087@gmail.com>"
}