-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.67 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
{
"name": "ottowebappcontrol",
"version": "1.0.0",
"description": "This project is a web app that allows you to control [Otto DIY](https://www.ottodiy.com/) robots from a browser using Bluetooth connection. The application is built with pure HTML, CSS & JavaScript. Using the [p5js](https://p5js.org/) library to communicate with an Arduino board (connected to a BLE module) and [Sweetalert2](https://sweetalert2.github.io/) to make better popup boxes.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"css:basic": "postcss scss/style.scss --output css/style.css --env development --config ./config/ --verbose",
"css:dev": "postcss scss/style.scss --output css/style.css --env development --verbose",
"css:watch": "postcss scss/style.scss --output css/style.css --env development --verbose --watch",
"css:build": "postcss scss/style.scss --output css/style.css --env production --verbose"
},
"browserslist": [
"> 2%"
],
"repository": {
"type": "git",
"url": "git+https://github.com/OttoDIY/OttoWebAppControl.git"
},
"keywords": [
"ottodiy"
],
"author": "Iván R. Artiles",
"license": "MIT",
"bugs": {
"url": "https://github.com/OttoDIY/OttoWebAppControl/issues"
},
"homepage": "https://github.com/OttoDIY/OttoWebAppControl#readme",
"devDependencies": {
"sweetalert2": "11.7.0",
"autoprefixer": "^10.2.4",
"cssnano": "^4.1.10",
"postcss": "^8.2.5",
"postcss-advanced-variables": "^3.0.1",
"postcss-assets": "^5.0.0",
"postcss-cli": "^8.3.1",
"postcss-map-get": "^0.2.9",
"postcss-nested": "^5.0.3",
"postcss-scss": "^3.0.4",
"postcss-sort-media-queries": "^3.3.3"
}
}