This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
69 lines (69 loc) · 2.23 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
{
"name": "wiki",
"version": "1.0.0",
"description": "Wiki for iGEM 2020 BITS Goa",
"main": "index.js",
"scripts": {
"preprocess": "python3 utils/preprocess.py",
"nav": "python3 utils/nav.py",
"citations": "python3 utils/citations.py",
"puglint": "glob-exec './src/**/*.pug' -- \"pug-lint {{files.join(' ')}}\"",
"custom_tests": "python3 utils/test.py",
"test": "npm-run-all puglint custom_tests",
"prestart": "npm-run-all preprocess nav citations custom_tests",
"start": "webpack-dev-server --config webpack.development.js --open --host 0.0.0.0",
"postprocess": "python3 utils/postprocess.py",
"build:webpack": "webpack --config webpack.production.js",
"build:all": "npm-run-all prestart build",
"build": "npm-run-all build:webpack postprocess"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igembitsgoa/wiki.git"
},
"author": "Pranav Ballaney",
"license": "ISC",
"bugs": {
"url": "https://github.com/igembitsgoa/wiki/issues"
},
"homepage": "https://github.com/igembitsgoa/wiki#readme",
"devDependencies": {
"bl": "^4.0.3",
"bootstrap": "^4.5.2",
"bootstrap-reboot": "^4.4.1",
"clean-webpack-plugin": "^3.0.0",
"crossref": "^1.2.1",
"css-loader": "^4.3.0",
"extract-css-chunks-webpack-plugin": "^4.7.5",
"file-loader": "^6.1.0",
"glob-exec": "^0.1.1",
"html-loader": "^1.3.1",
"html-webpack-plugin": "^4.5.0",
"image-webpack-loader": "^7.0.1",
"jquery": "^3.5.1",
"jstransformer-markdown-it": "^2.1.0",
"jstransformer-mathjax": "0.0.3",
"jstransformer-verbatim": "^1.1.1",
"markdown-it": "^11.0.1",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-multimd-table": "^4.0.3",
"mini-css-extract-plugin": "^0.11.2",
"node-forge": "^0.10.0",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"pug": "^3.0.0",
"pug-html-loader": "^1.1.5",
"pug-lint": "^2.6.0",
"pug-loader": "^2.4.0",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"private": true,
"dependencies": {}
}