forked from pocket-dragon/pocket-dragon.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.03 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.03 KB
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
{
"name": "pocketdragon",
"private": true,
"version": "0.0.0-development",
"description": "The companion app for the boardgame Pocket Dragon",
"main": "dist/index.js",
"module": "dist/index.mjs",
"es2015": "dist/esm/index.mjs",
"es2017": "dist/esm/index.mjs",
"jsnext:main": "dist/esm/index.mjs",
"scripts": {
"build": "npm run emptyDist && npm run build:ci",
"build:ci": "SASS_PATH=node_modules stencil build",
"cm": "git-cz",
"dev": "SASS_PATH=node_modules stencil build --dev --watch --serve",
"emptyDist": "find dist -not -name '.git' -delete",
"license-checker": "./node_modules/license-checker/bin/license-checker > LICENSES.txt",
"lint": "npm run lint:src && npm run lint:config",
"lint:fix": "npm run lint:src:fix && npm run lint:config:fix",
"lint:src": "npx tslint --project . -t stylish -c tslint.js 'src/**/*.{ts,tsx}'",
"lint:src:fix": "npx tslint --project . -t verbose --fix -c tslint.js 'src/**/*.{ts,tsx}'",
"lint:config": "npx eslint -c eslint.js '*.js' && npx prettier -l '{!(package*).json,.prettierrc}'",
"lint:config:fix": "npx eslint --fix -c eslint.js '*.js' && npx prettier --write '{!(package*).json,.prettierrc}'",
"setupPublishBranch": "mkdir dist && git worktree add dist master",
"postinstall": "npm run license-checker",
"publishApp": "npm run build && cd dist && git add --all && git commit -m \"Publishing to gh-pages\" && git push --force && cd ..",
"semantic-release": "semantic-release",
"start": "npm run dev"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@stencil/core": "^1.8.3",
"@stencil/router": "^1.0.1",
"localforage": "^1.7.3",
"material-components-web": "^0.36.1",
"showdown": "^1.9.0"
},
"devDependencies": {
"@stencil/sass": "^1.1.1",
"acorn": "^6.0.4",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.1",
"license-checker": "^24.1.0",
"prettier": "^1.15.3",
"semantic-release": "^15.13.1",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^3.6.0",
"tslint-sonarts": "^1.8.0",
"workbox-build": "4.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/playtest-hq/pocketdragon.git"
},
"author": "Adrian Schmidt",
"license": "MIT",
"bugs": {
"url": "https://github.com/playtest-hq/pocketdragon"
},
"homepage": "https://github.com/playtest-hq/pocketdragon",
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/@stencil/core/testing/jest.preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}