-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.09 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
{
"name": "dett",
"version": "1.9.4",
"description": "",
"scripts": {
"preinstall": "git submodule init && git submodule update --remote && cd DETT_Cache && yarn install",
"dev": "npm run clean && node bin/dev",
"build": "npm run clean && parcel build --no-content-hash --no-source-maps src/*.njk --out-dir build/ --public-url /",
"cache": "cd DETT_Cache && npm run start",
"build-cache": "bin/build-cache.sh",
"clean": "rm -rf dist build",
"clean:cache": "rm -rf .cache",
"gh-help": "gh-pages --help",
"deploy-prep": "bin/before-deploy.sh",
"deploy-test": "npm run deploy-prep && gh-pages -d build -m \"Automated deployment to GitHub Pages: Test\" -t",
"deploy-ci": "npm run deploy-prep && gh-pages -d build -m \"Automated deployment to GitHub Pages: ${CIRCLE_SHA1}\" -t",
"cloudflare-purge-cache": "cloudflare-purge-cache -e ${CF_EMAIL} -k ${CF_KEY} -z ${CF_ZONE_ID}",
"deploy": "echo dett.cc > build/CNAME && gh-pages -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pelith/DETT.git"
},
"author": [
"artistic709",
"SiriusTsou",
"jeremy5189",
"gilg4mesh",
"andy0130tw"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"gh-pages": "^2.0.1",
"parcel-bundler": "^1.0.0",
"sass": "^1.20.1"
},
"dependencies": {
"@babel/runtime": "^7.4.4",
"bip39": "^3.0.2",
"bootstrap": "^4.3.1",
"chokidar": "^3.0.1",
"cloudflare-purge-cache": "^1.1.0",
"core-js": "^2.6.5",
"ed25519-hd-key": "^1.0.0",
"ethereumjs-wallet": "^0.6.3",
"js-sha256": "^0.9.0",
"linkify-it": "^2.1.0",
"nunjucks": "^3.0.0",
"parcel-plugin-nunjucks": "^1.1.0",
"popper.js": "^1.15.0",
"url-parse": "^1.4.7"
},
"engines": {
"node": "8.16.0",
"npm": "6.9.0"
}
}