-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "taylorfit",
"version": "1.0.0",
"description": "Response surface analysis using multivariate polynomial regression bundled in an isomorphic web application.",
"main": "index.js",
"scripts": {
"build": "yarn install && webpack",
"debug": "yarn install && webpack serve --inline --hot",
"test": "mocha --recursive test/engine",
"start": "http-server build"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"babel-loader": "^8.1.0",
"@babel/preset-env": "^7.12.1",
"babelify": "^10.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coffee-loader": "^1.0.1",
"coffeescript": "^2.5.1",
"css-loader": "^5.0.0",
"file-loader": "^6.1.1",
"html-webpack-plugin": "^4.5.0",
"http-server": "^0.12.3",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.0.0",
"karma-mocha": "^2.0.1",
"karma-webpack": "^4.0.2",
"mocha": "^8.2.0",
"nib": "^1.1.2",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"raw-loader": "^4.0.2",
"style-loader": "^2.0.0",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.2.0",
"webpack-dev-server": "^3.11.0",
"worker-loader": "^3.0.5"
},
"dependencies": {
"c3": "^0.4.11",
"combinations-js": "^1.1.2",
"core-js": "^3.6.5",
"d3": "^6.2.0",
"fast-csv": "^4.3.2",
"knockout": "^3.5.1",
"lodash": "^4.17.20",
"mathjs": "^7.5.1",
"papaparse": "^5.3.0",
"webpack-cli": "^4.1.0",
"yarn": "^1.22.10"
},
"repository": "[email protected]:tsu-complete/taylorfit.git"
}