-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.09 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
{
"name": "therapi",
"productName": "Therapi",
"version": "0.0.1",
"description": "RESTful API Documentation and Testing Application",
"license": "MIT",
"author": "Claud D. Park <[email protected]> (http://www.posquit0.com)",
"contributors": [],
"homepage": "https://github.com/posquit0/therapi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/posquit0/therapi.git"
},
"bugs": {
"url": "https://github.com/posquit0/therapi/issues"
},
"keywords": [
"Electron",
"swagger",
"blueprint",
"REST",
"RESTful",
"http",
"documentation",
"testing",
"therapi",
"oas",
"api"
],
"main": "main",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"build": "npm run build:main && npm run build:renderer",
"build:main": "cross-env NODE_ENV=production webpack --config webpack.config.main.js --progress --profile --colors",
"build:renderer": "cross-env NODE_ENV=production webpack --config webpack.config.renderer.js --progress --profile --colors",
"lint": "eslint ."
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"co-mocha": "^1.2.0",
"coveralls": "^2.12.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"devtron": "^1.4.0",
"electron": "^1.6.7",
"electron-devtools-installer": "^2.2.0",
"eslint": "^3.18.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"spectron": "^3.7.0",
"style-loader": "^0.17.0",
"webpack": "^2.3.3"
},
"dependencies": {
"axios": "^0.16.0",
"prop-types": "^15.5.10",
"rc-tooltip": "^3.4.5",
"react": "^15.4.2",
"react-codemirror": "git://github.com/skidding/react-codemirror.git#106-fix-update",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-select": "^1.0.0-rc.4",
"react-tabs": "^1.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"styled-components": "^2.0.0",
"uuid": "^3.0.1"
}
}