-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "led-controller",
"version": "1.0.0",
"description": "RaspberryPi LED controller for ATA102C led strips",
"scripts": {
"start": "node index.js",
"test": "mocha",
"build:dev": "webpack",
"build:prod": "webpack --config webpack.config.prod.js",
"serve": "cross-env NODE_ENV=production node index.js",
"prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}",
"pretty": "prettier **/*.js --write"
},
"repository": "https://github.com/psyvision/led-controller",
"author": "Richard Caunt",
"license": "MIT",
"browserslist": [
"Android >= 5",
"IOS >= 9.3",
"Edge >= 15",
"Safari >= 9.1",
"Chrome >= 49",
"Firefox >= 31",
"Samsung >= 5"
],
"dependencies": {
"axios": "^0.21.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.14.0",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"dotstar": "^1.0.0",
"express": "^4.17.1",
"framework7": "^4.5.2",
"framework7-vue": "^4.5.2",
"mocha": "^6.2.3",
"morgan": "^1.10.0",
"pi-spi": "^1.2.1",
"supports-color": "^7.1.0",
"vue": "^2.6.11",
"vue-color": "^2.7.1",
"vue-color-picker-wheel": "^0.4.3"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.3.0",
"html-webpack-plugin": "^3.2.0",
"onchange": "^6.1.1",
"prettier": "^1.19.1",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0"
}
}