-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
74 lines (74 loc) · 1.86 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": "blazepack",
"version": "0.0.66",
"description": "Blazing fast dev server powered by sandpack",
"main": "./src/index.js",
"bin": {
"blazepack": "./bin/blazepack.js",
"bpk": "./bin/blazepack.js",
"blaze": "./bin/blazepack.js"
},
"scripts": {
"e2e": "jest e2e",
"e2e:ci": "jest e2e --forceExit --runInBand",
"test": "jest src",
"test:watch": "jest src --watch",
"build-client": "rollup -c rollup.config.js",
"dev-client": "rollup -c -w rollup.config.js",
"prepublish": "npm run build-client",
"prettify": "pretty-quick --staged"
},
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ameerthehacker/blazepack.git"
},
"keywords": [
"codesandbox",
"dev",
"server",
"smooshpack"
],
"author": "Ameer Jhan",
"license": "GPL",
"bugs": {
"url": "https://github.com/ameerthehacker/blazepack/issues"
},
"homepage": "https://github.com/ameerthehacker/blazepack#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@types/jest": "^26.0.20",
"all-contributors-cli": "^6.20.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-puppeteer": "^4.4.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"puppeteer": "^8.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.40.0",
"rollup-plugin-terser": "^7.0.2",
"wait-port": "^0.2.9"
},
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"cli-select": "^1.1.2",
"detect-indent": "^6.0.0",
"find-package-json": "^1.2.0",
"glob": "^7.1.6",
"ini": "^2.0.0",
"match-all": "^1.2.6",
"minimist": "^1.2.5",
"npm-conf": "^1.1.3",
"open": "^7.4.1",
"update-notifier": "^5.1.0",
"ws": "^7.4.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify"
}
}
}