forked from cytoscape/wineandcheesemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.89 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
{
"name": "wineandcheesemap",
"version": "1.0.0",
"description": "A wine and cheese visualisation app",
"main": "none",
"browserslist": [
"defaults"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rimraf dist",
"prod": "cross-env NODE_ENV=production run-s build",
"build": "run-s build:*",
"watch": "run-p watch:*",
"watch:livereload": "livereload 'dist, index.html' -w 1000",
"watch:http": "http-server .",
"build:js": "webpack",
"watch:js": "webpack --watch",
"build:css": "postcss src/styles/index.css -o dist/bundle.css",
"watch:css": "postcss --watch src/styles/index.css -o dist/bundle.css",
"lint": "run-s lint:*",
"lint:js": "eslint src/client",
"lint:css": "stylelint src/styles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cytoscape/wineandcheesemap.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/cytoscape/wineandcheesemap/issues"
},
"homepage": "https://github.com/cytoscape/wineandcheesemap#readme",
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.3",
"cssnano": "^4.1.10",
"eslint": "^6.7.2",
"http-server": "^0.12.0",
"livereload": "^0.8.2",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.23",
"postcss-cli": "^6.1.3",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-url": "^8.0.0",
"rimraf": "^3.0.0",
"stylelint": "^12.0.0",
"stylelint-config-standard": "^19.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"classnames": "^2.2.6",
"cytoscape": "^3.12.1",
"eventemitter3": "^4.0.0",
"lodash.debounce": "^4.0.8",
"lodash.memoize": "^4.1.2",
"normalize.css": "^8.0.1",
"preact": "^10.0.5"
}
}