-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 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
74
{
"name": "unicycle",
"private": true,
"version": "1.0.0",
"description": "Unicycle is an Electron application built using TypeScript, React and ant.design. Its purpose is to unify the design / development cycle.",
"main": "lib/main.js",
"scripts": {
"start": "electron .",
"lint": "eslint -- .",
"lint:fix": "npm run lint -- --fix",
"tsc": "tsc --watch",
"build": "tsc"
},
"repository": "https://github.com/gimenete/unicycle",
"author": "Alberto Gimeno <[email protected]> (http://gimenete.net)",
"devDependencies": {
"@types/node": "^8.0.24",
"electron": "^1.7.9",
"eslint": "4.4.1",
"eslint-config-prettier": "2.3.0",
"eslint-plugin-prettier": "2.1.2",
"prettier": "^1.6.1",
"typescript": "^2.6.2"
},
"dependencies": {
"@types/codemirror": "0.0.45",
"@types/finalhandler": "0.0.32",
"@types/fs-extra": "^4.0.2",
"@types/lodash": "^4.14.74",
"@types/mousetrap": "^1.5.34",
"@types/node-sass": "^3.10.32",
"@types/nodegit": "^0.18.5",
"@types/prettier": "^1.5.0",
"@types/qrcode": "^0.8.0",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"@types/serve-static": "^1.13.1",
"@types/sharp": "^0.17.4",
"@types/source-map": "^0.5.1",
"@types/ws": "^3.2.0",
"antd": "^3.0.2",
"camelcase": "^4.1.0",
"caniuse-api": "^2.0.0",
"caniuse-lite": "^1.0.30000748",
"coin-hive": "^1.10.0",
"css-mediaquery": "^0.1.2",
"dashify": "^0.2.2",
"dedent": "^0.7.0",
"finalhandler": "^1.1.0",
"fs-extra": "^4.0.1",
"get-port": "^3.2.0",
"localtunnel": "^1.8.3",
"lodash": "^4.17.4",
"monaco-editor": "^0.10.1",
"mousetrap": "^1.6.1",
"node-sass": "^4.5.3",
"nodegit": "^0.20.3",
"parse-import": "^2.0.0",
"parse5": "^3.0.2",
"postcss": "^6.0.8",
"postcss-selector-parser": "^2.2.3",
"qrcode": "^0.9.0",
"react": "^16.2.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "^16.2.0",
"react-shadow": "^16.2.0",
"serve-static": "^1.13.2",
"sharp": "^0.18.2",
"source-map": "^0.5.6",
"source-map-support": "^0.5.0",
"tslint": "^5.7.0",
"ws": "^3.2.0"
}
}