forked from Ezzzzzzzzzzzzzz/u8g2-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.96 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
{
"name": "u8g2-sim",
"version": "1.0.0",
"description": "A tiny simulator to speedup UI creation for Arduino.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"init:dist": "mkdirp dist",
"init:css": "sass src/style.scss dist/bundle.css && cssmin dist/bundle.css > dist/bundle.min.css",
"init:html:local": "cssmin src/index.html > dist/index.html",
"init:fonts:dir": "mkdirp dist/fonts",
"init:fonts:files": "cp -R node_modules/font-awesome/fonts/* dist/fonts/",
"init": "npm-run-all init:**",
"tsc": "tsc",
"webpack:prod": "webpack --mode=production",
"webpack:dev": "webpack serve --mode=development",
"build": "npm-run-all clean init webpack:prod",
"start": "npm-run-all webpack:dev"
},
"author": "Paul Smith <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/file-saver": "^2.0.4",
"@types/react": "16.9.35",
"@types/react-color": "^3.0.6",
"@types/react-dom": "16.9.8",
"@types/react-monaco-editor": "^0.16.0",
"@types/toastr": "^2.1.39",
"bdf-canvas": "^1.0.1",
"bulma": "^0.9.3",
"copy-webpack-plugin": "^6.4.1",
"cpr": "^3.0.1",
"css-loader": "^3.6.0",
"cssmin": "^0.4.3",
"file-saver": "^2.0.5",
"font-awesome": "^4.7.0",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"hsl-to-hex": "^1.0.0",
"mkdirp": "^1.0.4",
"monaco-editor": "^0.20.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"react": "^16.14.0",
"react-bulma-components": "^4.0.7",
"react-canvas-draw": "^1.2.1",
"react-color": "^2.19.3",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"react-monaco-editor": "^0.36.0",
"style-loader": "^1.3.0",
"toastr": "^2.1.4",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-webpack-plugin": "^2.1.1",
"typescript": "^3.9.10",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
}
}