-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
84 lines (84 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "drawphone",
"version": "1.0.0",
"description": "Telephone with pictures",
"private": true,
"scripts": {
"start": "run-s build:prod start:prod",
"dev": "run-p start:dev build:dev",
"start:dev": "nodemon --exec npm run start:prod --ignore server/public/ --delay 2",
"build:dev": "webpack --mode development --watch",
"start:prod": "node --experimental-json-modules ./server/bin/www",
"build:prod": "webpack --mode production",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest",
"format": "prettier --write **/*.{js,ts,tsx,json,yml,md}",
"lint": "eslint . --ext js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tannerkrewson/drawphone.git"
},
"author": "Tanner Krewson",
"license": "MIT",
"bugs": {
"url": "https://github.com/tannerkrewson/drawphone/issues"
},
"homepage": "https://github.com/tannerkrewson/drawphone#readme",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"assets-webpack-plugin": "^7.1.1",
"aws-sdk": "^2.1048.0",
"blueimp-canvas-to-blob": "^3.29.0",
"body-parser": "^1.19.1",
"bootstrap": "^4.6.1",
"bootstrap-sweetalert": "^1.0.1",
"cookie-parser": "^1.4.6",
"css-loader": "^6.5.1",
"debug": "^4.3.3",
"dexie": "^3.2.0",
"express": "^4.17.2",
"fabric": "^4.3.0",
"file-loader": "^6.2.0",
"got": "^12.0.0",
"jquery": "^3.6.0",
"knuth-shuffle": "^1.0.8",
"mini-css-extract-plugin": "^2.4.5",
"ml5": "^0.7.1",
"morgan": "^1.10.0",
"npm-run-all": "^4.1.5",
"popper.js": "^1.16.1",
"pug": "^3.0.2",
"socket.io": "^4.4.0",
"socket.io-client": "^4.4.0",
"striptags": "^3.2.0",
"typeface-pangolin": "1.1.13",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^4.3.8",
"jest": "^27.4.5",
"lint-staged": "^12.1.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "run-s --npm-path npm format lint test"
}
},
"lint-staged": {
"*.@(js|ts|tsx|json|md)": [
"npm run lint",
"npm run format"
]
},
"type": "module",
"engines": {
"node": "16.x",
"npm": "8.x"
}
}