-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.24 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": "@gros/process-flow",
"version": "0.0.1",
"description": "Flowchart display of story status.",
"keywords": [
"visualization",
"software-ecosystem"
],
"license": "Apache-2.0",
"author": "Leon Helwerda <[email protected]>",
"files": [
"lib/*.js",
"lib/*.json",
"public/*.css",
"public/*.html",
"public/*.js",
"public/*.js.LICENSE.txt",
"public/mix-manifest.json",
"res/*.scss",
"template/*.mustache",
"webpack.mix.js"
],
"directories": {
"dist": "public",
"lib": "lib",
"res": "res"
},
"repository": {
"type": "git",
"url": "https://github.com/grip-on-software/process-flow.git"
},
"homepage": "https://github.com/grip-on-software/process-flow",
"bugs": {
"url": "https://github.com/grip-on-software/process-flow/issues"
},
"scripts": {
"start": "/bin/sh -ce 'npm run pretest -- $@ && npm run hot -- $@' --",
"dev": "cross-env NODE_ENV=development webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production webpack --config=node_modules/laravel-mix/setup/webpack.config.js",
"pretest": "cross-env NODE_ENV=test webpack --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"@babel/preset-env": "^7.22.15",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^6.1.1",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"html-webpack-plugin": "^5.5.3",
"laravel-mix": "^6.0.49",
"mustache-loader": "^1.4.3",
"nyc": "^15.1.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"vue-template-compiler": "^2.7.14"
},
"dependencies": {
"@gros/visualization-ui": "^0.8.2",
"axios": "^1.5.0",
"bulma": "^0.9.4",
"bulma-slider": "^2.0.5",
"cross-env": "^7.0.3",
"d3": "^7.8.5",
"d3-graphviz": "^5.1.0",
"lodash": "^4.17.21"
}
}