-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
121 lines (121 loc) · 3.82 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
115
116
117
118
119
120
121
{
"name": "bayesjs-editor",
"version": "0.0.2",
"description": "An editor for Bayesian Networks.",
"keywords": [
"bayes",
"bayesian",
"network",
"msbn"
],
"main": "server.js",
"author": "fhelwanger",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fhelwanger/bayesjs-editor.git"
},
"bugs": {
"url": "https://github.com/fhelwanger/bayesjs-editor/issues"
},
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"start:prod": "webpack-dev-server --config webpack.prod.js",
"build": "webpack --config webpack.dev.js",
"build:prod": "webpack --config webpack.prod.js",
"clean": "rimraf dist",
"deploy": "npm run clean && npm run build:prod && gh-pages -d dist",
"lint": "eslint \"src/**/*.js\" \"cypress/**/*.js\"",
"lint:fix": "eslint --fix \"src/**/*.js\" \"cypress/**/*.js\"",
"test:unit": "jest --config jest.config.js",
"test:e2e": "start-server-and-test start http-get://localhost:8080 cypress:run",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"coveralls": "yarn test:unit -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"commit": "cz",
"postinstall": "is-ci || husky install"
},
"dependencies": {
"@cypress/webpack-preprocessor": "^4.0.3",
"babel-jest": "^24.8.0",
"bayesjs": "0.4.3",
"change-case": "^3.1.0",
"classnames": "^2.2.5",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"float": "^1.0.2",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"lodash": "^4.17.11",
"normalize.css": "^8.0.1",
"postcss-import": "^12.0.0",
"postcss-js": "^2.0.1",
"postcss-preset-env": "^6.6.0",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.8.6",
"react-contextmenu": "^2.11.0",
"react-dom": "^16.8.6",
"react-file-download": "^0.3.5",
"react-modal": "^3.1.7",
"react-redux": "^7.0.3",
"recompose": "^0.30.0",
"redux": "^4.0.1",
"redux-thunk": "^2.1.0",
"remove-accents": "^0.4.2",
"reselect": "^4.0.0",
"shuffle-array": "^1.0.1",
"sugarss": "^2.0.0",
"uuid": "^3.3.2",
"webpack": "^4.41.0",
"webpack-merge": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/react": "^9.1.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"coveralls": "^3.0.3",
"css-loader": "^2.1.1",
"cypress": "^3.2.0",
"cz-conventional-changelog": "3.3.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.15.2",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"husky": "^5.0.6",
"is-ci": "^2.0.0",
"jest": "^24.8.0",
"jest-css-modules": "^2.0.0",
"json-loader": "^0.5.7",
"node-sass": "^4.12.0",
"postcss": "^7.0.16",
"postcss-loader": "^3.0.0",
"rimraf": "^2.5.4",
"sass-loader": "^8.0.0",
"start-server-and-test": "^1.7.13",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}