-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.1 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
{
"name": "dranimate",
"version": "0.0.2",
"description": "Dranimate web app",
"scripts": {
"build": "npm run clean && npm run build:webpack && npm run build:copy",
"build:copy": "npm run build:copy:assets;",
"build:copy:assets": "mkdir dist/assets; cp -r src/assets dist; cp src/favicon.png dist/favicon.png",
"build:webpack": "webpack --colors --progress --display-error-details --config webpack-config-dev.js",
"clean": "rm -rf dist",
"lint": "eslint ./src",
"dev": "webpack-dev-server --inline --colors --progress --content-base src --config webpack-config-dev.js"
},
"devDependencies": {
"@types/react": "^16.9.32",
"@types/react-dom": "^16.9.6",
"@types/uuid": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"css-loader": "^0.28.7",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.4",
"node-sass": "^4.6.0",
"sass-loader": "^6.0.6",
"source-map-loader": "^0.2.4",
"style-loader": "^0.19.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@tensorflow-models/handpose": "0.0.3",
"@tensorflow/tfjs-converter": "^1.7.3",
"@tensorflow/tfjs-core": "^1.7.3",
"delaunay-fast": "^1.0.1",
"email-validator": "^2.0.4",
"file-saver": "^1.3.3",
"firebase": "^7.13.1",
"gif.js": "^0.2.0",
"prop-types": "^15.6.0",
"react": "^16.1.0",
"react-dom": "^16.1.0",
"stats.js": "^0.17.0",
"three": "^0.115.0",
"uuid": "^7.0.3",
"dranimate-fast": "git+https://[email protected]/batchku/Dranimate/_git/Dranimate-FAST"
},
"repository": {
"type": "git",
"url": "https://dev.azure.com/batchku/_git/Dranimate"
},
"bugs": {
"url": "https://dev.azure.com/batchku/Dranimate/_workitems"
},
"homepage": "https://dev.azure.com/batchku/_git/Dranimate?path=%2Freadme.md&_a=preview",
"license": "ISC",
"main": "src/_entrypoints/main.js",
"author": ""
}