-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 3.03 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
{
"name": "HeartLimit",
"version": "1.7.0",
"description": "Heart rate based personal training",
"main": "init.js",
"author": {
"name": "COPIOS",
"email": "[email protected]"
},
"repository": "https://github.com/copios-jp/red-falcon",
"license": "NONE",
"dependencies": {
"@material-ui/core": "^3.4.0",
"@material-ui/icons": "^3.0.1",
"@sentry/electron": "0.14.0",
"ant-plus": "https://github.com/copios-jp/ant-plus.git",
"classnames": "^2.2.6",
"electron-log": "^2.2.17",
"electron-updater": "^4",
"nanotimer": "^0.3.15",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-vis": "^1.11.5",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@jest-runner/electron": "^0.1.0",
"@semantic-release/exec": "^3.3.0",
"@semantic-release/git": "^7.0.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"browser-sync": "^2.23.6",
"chai": "^4.1.0",
"electron": "^3.0.0",
"electron-builder": "^20",
"electron-devtools-installer": "^2.2.4",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^23.6.0",
"jsdom": "13.0.0",
"jsdom-global": "3.0.2",
"lolex": "^3.0.0",
"npm-run-all": "^4.0.1",
"prettier": "^1.13.7",
"rimraf": "^2.5.4",
"semantic-release": "^15.12.0"
},
"scripts": {
"postinstall": "cd node_modules/usb && HOME=~/.electron-gyp node-pre-gyp rebuild --target=3.0.10 --dist-url=https://atom.io/download/atom-shell && cd ../../ && electron-builder install-app-deps && npm run private:clean",
"develop": "npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
"test": "ELECTRON_RUN_AS_NODE=true ./node_modules/.bin/electron ./node_modules/.bin/jest",
"test-ci": "ELECTRON_RUN_AS_NODE=true ./node_modules/.bin/electron ./node_modules/.bin/jest --coverage",
"test-old": "electron-mocha --renderer -R spec --require @babel/register test/**/*.spec.js",
"lint": "eslint --no-ignore scripts app module_mocks **/*.jsx||**/*.js",
"format": "npm run private:format -- --write",
"check-format": "npm run private:format -- --list-different",
"pack": "run-s private:clean private:compile private:build:mac",
"private:build:mac": "electron-builder --mac",
"private:watch": "npm run private:compile -- --source-maps true --watch --skip-initial-build",
"private:serve": "babel-node scripts/serve.js",
"private:compile": "rimraf dist && babel app/ --copy-files --out-dir build",
"private:clean": "rimraf build",
"private:format": "prettier \"scripts/**/*.js*\" \"app/**/*.js*\" \"module_mocks/**/*.js\""
}
}