-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.14 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "Whistle",
"version": "2.0.0",
"private": true,
"license": "MIT",
"description": "Allow whistleblowers to demonstrate their value without giving away who they are",
"scripts": {
"clean": "rimraf dist",
"build": "webpack --progress --verbose --colors --display-error-details --config webpack/common.config.babel.js",
"build:production": "npm run clean && npm run build",
"lint": "eslint src",
"precommit": "lint-staged",
"start": "cross-env NODE_ENV=development node bin/launch-server.js",
"test": "bin/test.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/SamTS/whistle.git"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"babel-core": "^6.9.1",
"babel-eslint": "^8.2.5",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.9.0",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.0",
"eslint": "^5.0.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"exports-loader": "^0.6.2",
"express": "^4.13.4",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"ignore-styles": "^2.0.0",
"imports-loader": "^0.6.5",
"jsdom": "^9.2.1",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^2.5.3",
"morgan": "^1.6.1",
"node-sass": "^4.9.2",
"react-hot-loader": "^1.3.0",
"react-transform-hmr": "^1.0.1",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.5.0",
"sass-extract": "^2.1.0",
"sass-extract-js": "^0.3.0",
"sass-extract-loader": "^1.1.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.7",
"webpack-dev-middleware": "^1.5.0",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.6.0",
"webpack-merge": "^4.1.3",
"webpack-pwa-manifest": "^3.6.2"
},
"dependencies": {
"@bloomprotocol/share-kit": "^1.1.1",
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^3.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"file-saver": "^2.0.0-rc.3",
"husky": "^1.0.1",
"keymirror": "^0.1.1",
"lint-staged": "^7.3.0",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.5.2",
"react-mic": "^12.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"sha256": "^0.2.0",
"truffle-contract": "^3.0.6",
"truffle-hdwallet-provider": "^0.0.6",
"validator": "^10.8.0",
"web3": "^1.0.0-beta.36"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.js": [
"eslint --fix",
"git add"
]
}
}