-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ui-spec-md",
"version": "0.5.15",
"description": "The efficient markdown compiler for Application screen documentation with UI Flows Graph",
"bin": {
"ui-spec-md": "./bin/cli.js"
},
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.production.js",
"build:dev": "webpack --config webpack.dev.js",
"test": "jest",
"precommit": "pretty-quick --staged",
"server:editable": "node ./bin/cli.js edit-server -m ./example -d ./_spec",
"server:dev-standard-theme": "node ./bin/cli.js dev-template-server -m ./example -d ./_standard -t ./theme/standard",
"server:spec": "http-server -p 8081 ./_spec",
"server:standard": "http-server -p 8082 ./_standard",
"generate:spec": "node ./bin/cli.js -m ./example -d ./_spec",
"generate:standard": "node ./bin/cli.js -m ./example -d ./_standard -t ./theme/standard",
"build-generate:spec": "npm run build && npm run generate:spec",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pxgrid/ui-spec-md.git"
},
"keywords": [],
"author": "tomof",
"license": "MIT",
"bugs": {
"url": "https://github.com/pxgrid/ui-spec-md/issues"
},
"homepage": "https://github.com/pxgrid/ui-spec-md#readme",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@fortawesome/fontawesome-svg-core": "^1.2.7",
"@fortawesome/free-solid-svg-icons": "^5.4.2",
"@fortawesome/vue-fontawesome": "^0.1.1",
"axios": "^0.18.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chokidar": "^3.0.2",
"clean-webpack-plugin": "^0.1.19",
"codemirror": "^5.52.0",
"commander": "^2.19.0",
"copy-webpack-plugin": "^5.1.1",
"cpx": "^1.5.0",
"css-loader": "^1.0.0",
"eslint": "^5.9.0",
"eslint-config-prettier": "^3.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-vue": "^5.0.0-beta.3",
"express": "^4.16.4",
"globby": "^8.0.1",
"handlebars": "^4.7.2",
"html-webpack-plugin": "^4.0.0-beta.5",
"http-server": "^0.12.1",
"image-size": "^0.6.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"mini-css-extract-plugin": "^0.4.4",
"mkdirp": "^0.5.1",
"multer": "^1.4.1",
"ncp": "^2.0.0",
"node-sass": "^4.13.1",
"portal-vue": "^2.1.7",
"prettier": "^1.16.3",
"prismjs": "^1.17.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"viz.js": "^2.1.2",
"vue": "^2.5.17",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"vuex-connect": "^2.2.0",
"vuex-connect-namespace-helper": "^1.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.4",
"write-file-webpack-plugin": "^4.4.1",
"yargs": "^13.3.0"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"husky": "^1.1.1",
"jest": "^24.8.0",
"lint-staged": "^8.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"testEnvironment": "node"
}
}