-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.95 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
{
"name": "ternaryplot.com",
"version": "1.5.2",
"description": "The source code for my side project: [TernaryPlot.com](http://www.ternaryplot.com). A single purpose website to quickly and freely genreate ternary plots. A ternary plot is a somewhat obscure diagram often used in geology, soil sciences, metallurgy and chemical engineering. The quickest option available for making ternary plots was with Excel templates, which in my opinion are inflexible and produce ugly plots. Some R and Python libraries exist for this purpose but these are harder to use and require installing R and Python (of course). That's why I made this tool for personal use, and later decided to develop into something slicker and with more options.",
"main": "./src/js/main.js",
"homepage": "https://github.com/JulesBlm/TernaryPlot.com#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JulesBlm/TernaryPlot.git"
},
"directories": {
"lib": "lib"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress",
"watch": "webpack --progress --watch",
"dev": "webpack serve --port 4004",
"start": "npm run dev"
},
"keywords": [],
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/JulesBlm/TernaryPlot.com/issues"
},
"devDependencies": {
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-plugin-import": "^2.23.4",
"mini-css-extract-plugin": "^2.0.0",
"node-sass": "^6.0.1",
"sass-loader": "^12.1.0",
"style-loader": "^3.0.0",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"d3": "^3.5.17",
"dotenv": "^8.2.0",
"faunadb": "^3.0.1",
"handsontable": "^8.3.2",
"reveal_external": "^1.3.0",
"reveal.js": "^3.9.2",
"reveald3": "^1.5.5",
"svg-crowbar": "^0.6.5",
"sweetalert": "^2.1.2"
}
}