forked from meetalva/alva
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.6 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "meetalva",
"version": "0.6.0",
"description": "Alva is a radically new design tool that enables cross-functional teams to design digital products.",
"main": "./build/electron/electron.js",
"scripts": {
"build": "tslint --project . -c tslint.json 'src/**/*.ts' && tsc --project . && cp src/electron/*.html build/electron/",
"build-lsg": "tsc --project src/lsg --outDir build/lsg/patterns --sourceMap",
"start": "npm run build && concurrently \"electron build/electron/electron.js\" \"tsc --project . --watch\"",
"start-lsg": "npm run build-lsg && concurrently \"npm run build-lsg -- -w\" \"patternplate start\"",
"clean": "rm -rf build && rm -rf dist",
"clean-build": "npm run clean && npm run build",
"dist": "standard-version --no-verify && npm run clean-build && cd build && mkdir designkit && cp -r ../../designkit/patterns ../../designkit/alva ../../designkit/*.* designkit/ && cd designkit && npm i && npm run build && rm -rf node_modules && npm i --production && cd ../.. && electron-builder -mwl",
"commit": "commit",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "lint-staged",
"lint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetalva/alva.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/meetalva/alva/issues"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"tslint -c tsconfig.json --fix",
"git add"
]
},
"prettier": {
"printWidth": 100,
"useTabs": true,
"tabWidth": 3,
"singleQuote": true
},
"build": {
"appId": "io.github.meetalva",
"productName": "Alva",
"copyright": "Copyright (c) 2017 SinnerSchrader Deutschland GmbH",
"mac": {
"category": "public.app-category.graphics-design"
},
"files": [
"build/**/*",
"package.json"
],
"directories": {
"buildResources": "src/resources",
"output": "dist"
},
"asarUnpack": [
"build/designkit/**"
],
"nsis": {
"artifactName": "${productName}-${version}.${ext}",
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
}
},
"standard-version": {
"scripts": {
"prebump": "rm -f package-lock.json"
}
},
"devDependencies": {
"@commitlint/cli": "^5.2.5",
"@commitlint/config-conventional": "^5.2.3",
"@commitlint/prompt-cli": "^5.2.5",
"@commitlint/travis-cli": "^5.2.5",
"@patternplate/cli": "^2.0.0-4",
"@patternplate/render-styled-components": "^2.0.0-3",
"@types/electron-devtools-installer": "^2.0.2",
"@types/fs-extra": "^5.0.0",
"@types/js-yaml": "^3.10.1",
"@types/node": "^8.0.53",
"@types/react": "^16.0.0",
"@types/react-dom": "^16.0.3",
"concurrently": "^3.5.1",
"electron": "^1.7.9",
"electron-builder": "^19.49.0",
"electron-devtools-installer": "^2.2.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mobx-react-devtools": "^4.2.15",
"prettier": "^1.9.2",
"standard-version": "^4.2.0",
"ts-config": "^15.0.0",
"tslint": "^5.8.0"
},
"dependencies": {
"cli": "^1.0.1",
"electron-log": "^2.2.12",
"electron-updater": "^2.17.6",
"fs-extra": "^5.0.0",
"js-yaml": "^3.10.0",
"mobx": "^3.3.2",
"mobx-react": "^4.3.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router": "^4.2.0",
"readts": "^0.1.0",
"styled-components": "^2.2.3",
"systemjs": "^0.20.19",
"tslib": "^1.8.0",
"typescript": "^2.6.2"
},
"homepage": "https://meetalva.github.io/"
}