-
-
Notifications
You must be signed in to change notification settings - Fork 361
/
package.json
73 lines (73 loc) · 2.17 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
{
"name": "proton-native",
"version": "2.0.5",
"description": "React Native for the desktop, cross compatible",
"main": "bin/index.js",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"scripts": {
"test": "Xvfb :34 -screen 0, 1280x720x24 & DISPLAY=:34 jest",
"test-update": "Xvfb :34 -screen 0, 1280x720x24 & DISPLAY=:34 jest -u",
"testprog": "babel-node testprog.js",
"prettier": "prettier --single-quote --trailing-comma es5 --write 'src/**/*.js' 'test/**/*.js' 'examples/*.js' './**/*.md' testprog.js",
"build": "tsc -b",
"prepack": "npm run build",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kusti8/proton-native.git"
},
"author": "Gustav Hansen <kusti8@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kusti8/proton-native/issues"
},
"homepage": "https://github.com/kusti8/proton-native#readme",
"dependencies": {
"color": "^3.1.2",
"file-type": "12.4.2",
"image-size": "^0.7.5",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"node-qt-napi": "^0.0.4",
"react": "^16.12.0",
"react-deep-force-update": "^2.1.3",
"react-devtools-core": "^4.3.0",
"react-proxy": "^2.0.8",
"react-reconciler": "^0.24.0",
"read-chunk": "^3.2.0",
"yoga-layout-prebuilt": "^1.9.3"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-stage-0": "^7.0.0",
"@types/color": "^3.0.1",
"@types/lodash": "^4.14.149",
"@types/node-fetch": "^2.5.4",
"@types/react": "^16.9.17",
"@types/react-reconciler": "^0.18.0",
"@types/yoga-layout": "^1.9.1",
"babel-jest": "^24.9.0",
"husky": "^0.14.3",
"jest": "^24.9.0",
"jest-image-snapshot": "^2.11.1",
"jest-util": "^24.9.0",
"lint-staged": "^7.1.0",
"prettier": "^1.19.1",
"react-devtools": "^3.6.3",
"typescript": "^3.7.4"
},
"files": [
"bin"
]
}