-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 993 Bytes
/
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
{
"name": "JsPad",
"version": "1.0.0",
"description": "Javascript playground editor",
"main": "index.js",
"homepage": "https://bettaibi.github.io/JsPad",
"scripts": {
"dev": "rm -rf ./developement && rm -rf ./.cache && parcel public/index.html --out-dir developement -p 3000",
"build": "parcel build public/index.html --out-dir dist --public-url ./",
"postbuild": "workbox generateSW",
"deploy": "gh-pages -d dist"
},
"author": "Bettaibi Nidhal",
"license": "ISC",
"keywords": [
"javascript",
"editor",
"playground",
"snippets"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/runtime-corejs2": "^7.12.5",
"codemirror": "^5.59.0",
"parcel-bundler": "^1.12.4",
"sass": "^1.30.0",
"workbox-cli": "^6.0.2"
},
"dependencies": {
"@emmetio/codemirror-plugin": "^1.2.1",
"gh-pages": "^3.1.0",
"localbase": "^0.7.4",
"uuid": "^8.3.2"
}
}