-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.93 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.93 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
81
82
83
{
"name": "martian",
"version": "0.5.2",
"description": "Websocket testing tool",
"main": "init.js",
"author": {
"name": "Dhanraj Acharya",
"email": "dhanrajacharya44@gmail.com"
},
"repository": "https://github.com/drex44/martian",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.0.0",
"bulma": "^0.7.4",
"connected-react-router": "^5.0.1",
"cool-checkboxes-for-bulma.io": "^1.1.0",
"font-awesome": "^4.7.0",
"history": "^4.6.3",
"lodash": "^4.17.11",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-json-editor-ajrm": "^2.5.9",
"react-redux": "^5.0.2",
"react-router": "^4.1.2",
"redux": "^4.0.0",
"redux-actions": "^2.2.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"ws": "^6.2.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-eslint": "^10.0.1",
"browser-sync": "^2.23.6",
"chai": "^4.1.0",
"electron": "^3.0.0",
"electron-builder": "^20.0.7",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^6.0.1",
"eslint": "^5.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-react": "^7.1.0",
"husky": "^1.3.1",
"npm-run-all": "^4.0.1",
"prettier": "^1.13.7",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.5.4"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"dev": "npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
"test": "electron-mocha --renderer -R spec --require @babel/register test/**/*.spec.js",
"lint": "eslint --no-ignore scripts app test *.js",
"format": "npm run private:format -- --write",
"check-format": "npm run private:format -- --list-different",
"pack": "run-s private:clean private:compile private:build:all",
"pack:mac": "run-s private:clean private:compile private:build:mac",
"pack:win": "run-s private:clean private:compile private:build:win",
"pack:linux": "run-s private:clean private:compile private:build:linux",
"private:build:all": "electron-builder -mwl",
"private:build:mac": "electron-builder --mac",
"private:build:win": "electron-builder --win",
"private:build:linux": "electron-builder --linux",
"private:watch": "npm run private:compile -- --source-maps true --watch --skip-initial-build",
"private:serve": "babel-node scripts/serve.js",
"private:compile": "babel app/ --copy-files --out-dir build",
"private:clean": "rimraf build",
"private:format": "prettier \"babel.config.js\" \"scripts/*.js\" \"app/**/*.js\" \"test/**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm run check-format"
}
}
}