forked from mattjennings/svelte-phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "svelte-phaser-monorepo",
"author": "Matt Jennings",
"license": "MIT",
"private": true,
"scripts": {
"clean:node_modules": "find . -name \"node_modules\" -exec rm -rf '{}' +",
"deploy:site:prod": "(vercel --prod); (cd examples && vercel --prod);",
"deploy:site:staging": "(vercel); (cd examples && vercel)",
"build": "yarn build:docs && yarn build:examples",
"build:docs": "cd docs && yarn build",
"build:examples": "cd examples && yarn build",
"test": "cd packages/svelte-phaser && yarn test",
"lint": "yarn lint:packages && yarn lint:examples && yarn lint:docs",
"lint:packages": "eslint packages --ext .js,.svelte --ignore-pattern node_modules",
"lint:examples": "eslint examples --ext .js,.svelte --ignore-pattern node_modules",
"lint:docs": "eslint docs --ext .js,.svelte --ignore-pattern node_modules"
},
"workspaces": {
"packages": [
"examples/*",
"templates/*",
"packages/*",
"docs"
],
"nohoist": [
"**/svelte",
"**/@svelte-docs/core",
"**/@svelte-docs/core/**",
"**/@svelte-docs/server",
"**/@svelte-docs/server/**",
"**/@svelte-docs/publisher",
"**/@svelte-docs/publisher/**",
"**/@svelte-docs/themes",
"**/@svelte-docs/themes/**"
]
},
"resolutions": {
"svelte": "^3.24.0"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-plugin-svelte3": "^2.7.3",
"eslint-plugin-jest": "^23.11.0",
"phaser": "^3.23.0",
"prettier": "^2.0.5",
"svelte": "^3.24.0"
},
"keywords": [
"svelte",
"phaser"
]
}