-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.84 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.84 KB
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
{
"name": "edge-impulse-mobile-client",
"version": "1.0.0",
"description": "Mobile data acquisition and classification client for Edge Impulse",
"private": true,
"scripts": {
"start": "NODE_ENV=development npm run watch-server & npm run watch-client",
"start-production": "node --trace-warnings build/server/start.js",
"build": "tsc -p client && tsc -b server",
"build-client": "tsc -p client",
"build-server": "tsc -b server",
"eslint-server": "tsc -b ./server && (cd server && npx eslint --cache --quiet)",
"eslint-client": "tsc -b ./client && (cd client && npx eslint --cache --quiet)",
"lint": "npm run eslint-server && npm run eslint-client",
"postinstall": "cd ../common && npm ci",
"watch-server": "node watch-server.js",
"watch-client": "node watch-client.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brianweet/edge-impulse-example-browser-device.git"
},
"contributors": [
{
"name": "Brian Weeteling",
"email": "brianweeteling@gmail.com"
},
{
"name": "Jan Jongboom",
"email": "jan@edgeimpulse.com"
}
],
"bugs": {
"url": "https://github.com/brianweet/edge-impulse-example-browser-device/issues"
},
"homepage": "https://github.com/brianweet/edge-impulse-example-browser-device#readme",
"dependencies": {
"@ei/common": "../common",
"@sentry/node": "8.55.0",
"compression": "1.7.5",
"cors": "2.8.5",
"express": "4.21.2",
"glob": "10.4.3",
"handlebars": "4.7.9"
},
"devDependencies": {
"@types/compression": "1.7.5",
"@types/cors": "2.8.6",
"@types/express": "4.17.21",
"@types/glob": "8.1.0",
"@types/jquery": "3.5.1",
"@types/mocha": "10.0.6",
"@types/node": "22.15.21",
"chokidar": "4.0.3",
"eslint": "9.19.0",
"terser": "4.4.3",
"typescript": "4.9.5"
}
}