-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
47 lines (47 loc) · 1.61 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
{
"name": "ai-workout-assistant",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"start-dev": "webpack serve --config webpack.dev.js",
"start-prod": "webpack serve --config webpack.prod.js",
"tw-serve-dev": "npx tailwindcss -i ./src/input.css -o ./public/stylesheets/output.css --watch",
"tw-build-prod": "npx tailwindcss -i ./src/input.css -o ./public/stylesheets/output.css --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reevald/ai-workout-assistant.git"
},
"author": "Moch. Galang Rivaldo",
"license": "ISC",
"bugs": {
"url": "https://github.com/reevald/ai-workout-assistant/issues"
},
"homepage": "https://github.com/reevald/ai-workout-assistant#readme",
"devDependencies": {
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.8.3",
"tailwindcss": "^3.2.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@mediapipe/pose": "^0.5.1635988162",
"@tensorflow-models/pose-detection": "^2.0.0",
"@tensorflow/tfjs-backend-webgl": "^4.2.0",
"@tensorflow/tfjs-converter": "^4.2.0",
"@tensorflow/tfjs-core": "^4.2.0",
"@tensorflow/tfjs-layers": "^4.2.0"
}
}