-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
72 lines (72 loc) · 2.25 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
{
"name": "hydrator",
"version": "0.3.0",
"description": "A desktop utility to hydrate Twitter ID datasets.",
"main": "init.js",
"author": {
"name": "Ed Summers",
"email": "[email protected]"
},
"repository": "https://github.com/docnow/hydrator",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.6.2",
"connected-react-router": "^6.8.0",
"csv-write-stream": "^2.0.0",
"dotenv": "^8.2.0",
"electron-json-storage": "^4.1.8",
"history": "^4.10.1",
"moment": "^2.24.0",
"numeraljs": "^1.5.6",
"prop-types": "^15.7.2",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"react-redux": "^7.1.1",
"react-router": "^5.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-thunk": "^2.2.0",
"styled-components": "^5.1.0",
"twit": "^2.2.11",
"twitter-pin-auth": "^0.2.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"browser-sync": "^2.26.7",
"chai": "^4.1.0",
"electron": "^8.2.4",
"electron-builder": "^22.0.0",
"electron-devtools-installer": "^3.0.0",
"electron-mocha": "^8.1.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-inject-string": "^1.1.2",
"gulp-sourcemaps": "^2.6.5",
"prettier": "^1.18.2",
"redux-mock-store": "^1.2.2",
"rimraf": "^3.0.0"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"develop": "gulp develop",
"build": "gulp build",
"test": "electron-mocha --renderer -R spec --require @babel/register test/**/*.spec.js",
"lint": "eslint --no-ignore tasks app test *.js",
"format": "npm run private:format -- --write",
"check-format": "npm run private:format -- --list-different",
"pack:mac": "gulp pack-mac",
"pack:win": "gulp pack-win",
"pack:linux": "gulp pack-linux",
"private:format": "prettier gulpfile.js babel.config.js \"tasks/*.js\" \"app/**/*.js\" \"test/**/*.js\""
}
}