-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "super8",
"version": "0.1.0-pre",
"description": "Digitizing Super 8 film frames.",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"clean": "rimraf public",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon -w server -x \"npm start\"",
"dev:client": "npm run clean && parcel watch client/index.html --out-dir public",
"build": "npm run clean && parcel build client/index.html --out-dir public",
"lint": "eslint ./ --ignore-path .gitignore --ext .js,.jsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "pixnbits",
"license": "MIT",
"dependencies": {
"@serialport/parser-readline": "^2.0.2",
"fastify": "^2.10.0",
"fastify-static": "^2.5.0",
"fastify-ws": "^1.0.3",
"serialport": "^7.1.5",
"sharp": "^0.23.1"
},
"devDependencies": {
"bootstrap": "^4.3.1",
"concurrently": "^5.0.0",
"eslint": "^6.5.1",
"eslint-config-amex": "^11.1.0",
"nodemon": "^1.19.3",
"parcel-bundler": "^1.12.4",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"rimraf": "^3.0.0",
"sass": "^1.23.0"
}
}