-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 2 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
{
"name": "labello",
"version": "1.0.0",
"description": "A printing service for the **Brother QL-720NW** and similar label printer. The brotherprint library is from: https://github.com/fozzle/python-brotherprint",
"main": "index.js",
"scripts": {
"build": "webpack --bail",
"start": "webpack --progress --watch",
"prod": "NODE_ENV=production npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaosdorf/labello.git"
},
"author": "marudor",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaosdorf/labello/issues"
},
"homepage": "https://github.com/chaosdorf/labello#readme",
"dependencies": {
"elemental": "^0.6.1",
"react": "^15",
"react-addons-css-transition-group": "^15.0.2",
"react-dom": "^15"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.12.0",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.0",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-react-constant-elements": "^7.10.4",
"@babel/preset-env": "^7.12.0",
"@babel/preset-flow": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"babel-loader": "^8.1.0",
"babel-preset-joblift": "^3.4.2",
"css-loader": "^5.0.0",
"file-loader": "^6.1.1",
"inline-css-loader": "^2.1.2",
"less": "^3.9.0",
"less-loader": "^7.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.1.2",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
}
}