-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.66 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
{
"private": true,
"name": "nimbus-weather",
"license": "MIT",
"repository": "github:tgrowden/nimbus-weather",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"concurrently": "^3.6.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-compat": "^2.2.0",
"eslint-plugin-flowtype": "^2.47.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.75.0",
"flow-mono-cli": "^1.3.4",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"jest-mock-axios": "^2.1.11",
"lint-staged": "^7.2.0",
"nodemon": "^1.17.5",
"opn": "^5.3.0",
"parcel-bundler": "^1.9.2",
"prettier-eslint-cli": "^4.7.1",
"rimraf": "^2.6.2"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "eslint . --cache",
"lint:no-cache": "eslint . --no-cache",
"lint:fix": "eslint . --fix",
"flow": "flow",
"flow:setup": "rimraf packages/nimbus-weather-*/.flow-config packages/nimbus-weather-*/flow-typed/npm && flow-mono install-types && flow-mono create-symlinks .flowconfig",
"postinstall": "is-ci 'alert-not-ci' 'flow:setup'",
"test": "jest",
"build": "./bin/core build && ./bin/electron build && ./bin/webapp build",
"package": "./bin/electron package",
"release": "./bin/electron release",
"server:start": "./bin/server start",
"server:dev": "./bin/server dev",
"alert-not-ci": "echo \"Detected a CI server. Skipping installing flow typings\"",
"webapp:dev": "concurrently \"./bin/core dev\" \"./bin/webapp dev\"",
"electron:dev": "concurrently \"./bin/core dev\" \"./bin/electron dev\"",
"format": "prettier-eslint --write '**/*.js'",
"precommit": "lint-staged"
},
"jest": {
"setupFiles": [
"./test-setup.js"
]
},
"lint-staged": {
"*.js": [
"eslint",
"prettier-eslint --write",
"git add"
]
},
"dependencies": {
"commander": "^2.16.0",
"dotenv": "^6.0.0",
"electron": "^2.0.4",
"electron-builder": "^20.19.1",
"is-ci-cli": "^1.1.1",
"shelljs": "^0.8.2"
}
}