-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 KB
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
{
"name": "terms",
"version": "1.0.0",
"description": "Terminology glossaries for kinds of industry.",
"scripts": {
"doc": "node ./scripts/build-doc",
"build": "cross-env NODE_ENV=production webpack --config ./config/webpack.config.js",
"publish": "gh-pages -d dist",
"deploy": "yarn run doc && yarn run build && yarn run publish",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config ./config/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gnotes/terms.git"
},
"keywords": [
"terms",
"terminology",
"glossary"
],
"author": "xing.he",
"license": "MIT",
"bugs": {
"url": "https://github.com/Gnotes/terms/issues"
},
"homepage": "https://github.com/Gnotes/terms#readme",
"dependencies": {
"chalk": "^4.0.0",
"lunr": "^2.3.8",
"react": "^16.13.1",
"showdown": "^1.9.1",
"showdown-highlight": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@types/classnames": "^2.2.10",
"@types/lunr": "^2.3.3",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"babel-loader": "^8.1.0",
"cheerio": "^1.0.0-rc.3",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.0",
"object-assign": "^4.1.1",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"prop-types": "^15.7.2",
"react-dom": "^16.13.1",
"sass-loader": "8.0.2",
"style-loader": "0.23.1",
"ts-loader": "^7.0.1",
"typescript": "~3.7.2",
"uniqolor": "^1.0.0",
"url-loader": "2.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.3.1"
}
}