forked from gattigaga/schemator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.72 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "schemator",
"version": "2.0.0",
"author": "Gattigaga Hayyuta Dewa",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"dependencies": {
"common-tags": "^1.8.0",
"date-fns": "^1.29.0",
"fs-extra": "^7.0.0",
"indent-string": "^3.2.0",
"normalize.css": "^8.0.0",
"pluralize": "^7.0.0",
"prop-types": "^15.6.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-icons": "^2.2.7",
"react-markdown": "^3.4.1",
"react-redux": "^5.0.7",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"schemator-utils": "^1.0.0",
"styled-components": "^3.3.2",
"typeface-roboto": "^0.0.54",
"uuid": "^3.2.1",
"vm2": "^3.6.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"electron": "ELECTRON_URL=http://localhost:3000 electron .",
"pack": "yarn build && electron-builder --dir",
"release": "yarn build && electron-builder --publish onTag"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.7",
"@storybook/addon-links": "^3.4.7",
"@storybook/addons": "^3.4.7",
"@storybook/react": "^3.4.7",
"babel-core": "^6.26.3",
"babel-runtime": "^6.26.0",
"electron": "^2.0.5",
"electron-builder": "^20.28.2",
"electron-devtools-installer": "^2.2.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"jest-styled-components": "^5.0.1",
"prettier": "^1.13.5",
"redux-mock-store": "^1.5.3"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/**/*.stories.js",
"!src/setupTests.js",
"!src/index.js",
"!src/config.js"
]
},
"build": {
"appId": "com.gattigaga.schemator",
"productName": "Schemator",
"publish": "github",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"linux": {
"category": "Development",
"target": "AppImage"
},
"mac": {
"category": "public.app-category.developer-tools",
"target": "dmg"
}
}
}