-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "micro-graphql-svelte",
"version": "0.2.3",
"description": "",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/arackaf/micro-graphql-react.git"
},
"author": "Adam Rackis",
"license": "MIT",
"bugs": {
"url": "https://github.com/arackaf/micro-graphql-react/issues"
},
"homepage": "https://github.com/arackaf/micro-graphql-react",
"devDependencies": {
"@babel/preset-env": "^7.3.4",
"@std/esm": "0.19.7",
"@testing-library/svelte": "^3.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"babel-jest": "^26.6.1",
"classnames": "^2.2.6",
"codecov": "^3.8.1",
"del": "3.0.0",
"history": "^4.6.1",
"jest": "^26.6.3",
"node-sass": "^7.0.1",
"query-string": "^6.2.0",
"sass": "^1.50.0",
"svelte": "^3.29.4",
"svelte-jester": "^1.1.5",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3",
"url-parse": "^1.4.0",
"vite": "^2.9.0"
},
"scripts": {
"server": "node runServer",
"build-all": "vite build && NO_MINIFY=true vite build",
"prepublishOnly": "npm run compile-ts && npm run build-all",
"test": "jest --runInBand --bail --detectOpenHandles && codecov",
"test-local": "jest --runInBand",
"test-local-codecov": "jest --runInBand && dotenv codecov",
"testw": "jest --runInBand --watchAll",
"start": "node ./demo/server.js",
"size-check": "npm run build && gzip dist/index.min.js && stat dist/index.min.js.gz && rm -f dist/index.min.js.gz",
"tsc": "tsc --noEmit",
"tscw": "tsc -w --noEmit",
"build": "vite build",
"compile-ts": "tsc -d --project tsconfig.release.json --outDir ./lib"
},
"sideEffects": false,
"typings": "lib/index.d.ts"
}