This repository has been archived by the owner on Aug 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
89 lines (89 loc) · 2.75 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
{
"name": "tidyblocks",
"version": "0.1.0",
"description": "TidyBlocks reimagined.",
"main": "index.js",
"scripts": {
"build-dev": "webpack --config webpack.config.js",
"build": "webpack --config webpack.production.config.js",
"watch": "webpack --config webpack.config.js --watch",
"check": "node bin/check_translations.js",
"coverage": "nyc --reporter=html --reporter=text mocha",
"data": "data/generate.js data/*.csv",
"docs": "jsdoc -c .jsdocrc --destination docs --readme README.md libs/*.js",
"lint": "eslint index.js libs/*.js blocks/*.js",
"serve": "npx @11ty/eleventy --serve",
"site": "npx @11ty/eleventy",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gvwilson/briq.git"
},
"author": "Greg Wilson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gvwilson/briq/issues"
},
"homepage": "https://github.com/gvwilson/briq#readme",
"dependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@babel/compat-data": "^7.10.4",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"adm-zip": "^0.4.16",
"assert": "^2.0.0",
"babelify": "^10.0.0",
"blockly": "^3.20200625.2",
"browserify": "^16.5.0",
"eleventy-plugin-sass": "^1.0.0",
"eslint": "^7.5.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jsdoc": "^3.6.3",
"jsdom": "^16.2.1",
"m-react-splitters": "^1.2.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"original-fs": "^1.1.0",
"papaparse": "^5.1.1",
"pretty": "^2.0.0",
"random": "^2.2.0",
"react": "^16.13.1",
"react-animated-css": "^1.2.1",
"react-blockly": "^5.2.0",
"react-data-grid": "^7.0.0-canary.17",
"react-dom": "^16.13.1",
"react-select": "^3.1.0",
"seedrandom": "^3.0.5",
"simple-statistics": "^7.2.0",
"vega": "^5.13.0",
"vega-embed": "^6.10.0",
"vega-lite": "^4.13.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.5",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.6.0",
"file-loader": "^6.0.0",
"gh-pages": "^3.1.0",
"sass": "^1.26.10",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}