-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "zxnext",
"version": "1.0.0",
"main": "index.js",
"checkjs": "tsc",
"engines": {
"node": "18.18.2"
},
"scripts": {
"dev": "rm -rf dist; parcel watch public/index.html public/**/index.html public/**/**/index.html",
"serve": "serve dist -p 8080",
"deploy": "npm run build; git add dist; git commit -m'new build'; git push origin master",
"functions": "now --prod",
"build": "sh ./hashit.sh; rm -rf dist; parcel build public/index.html public/**/index.html public/**/**/index.html",
"test": "tap --no-coverage-report --watch __tests__/**/*.test.js"
},
"staticFiles": {
"staticPath": "public/static",
"watcherGlob": "**"
},
"browserslist": [
"last 1 Chrome versions"
],
"keywords": [],
"author": "Remy Sharp (https://remysharp.com)",
"license": "MIT",
"dependencies": {
"@remy/unpack": "^2.1.7",
"axios": "^0.19.2",
"codemirror": "^5.57.0",
"esm": "^3.2.25",
"lodash.debounce": "^4.0.8",
"multer": "^1.4.2",
"nearest-color": "^0.4.4",
"parcel-plugin-simple-sw": "^1.0.1",
"txt2bas": "^1.22.2"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@zeit/ncc": "^0.22.1",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.7.0",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-plugin-jsdoc": "^30.0.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-static-files-copy": "^2.3.1",
"sass": "^1.26.3",
"serve": "^12.0.0",
"tap": "^14.10.7",
"typescript": "^3.9.6"
},
"parcel-plugin-simple-sw": "*",
"sw": {
"fileName": "sw.js",
"swSrc": "./public/sw.js",
"minify": true,
"cacheId": "zx"
},
"description": ""
}