-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 980 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 980 Bytes
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
{
"name": "protopaint",
"version": "0.0.1",
"description": "Advanced Paint",
"main": "index.js",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/ip": "^1.1.0",
"@types/ts-nameof": "^4.2.1",
"concurrently": "^5.1.0",
"ts-nameof": "^5.0.0",
"ts-node": "^8.10.1",
"ttypescript": "^1.5.10",
"typescript": "^3.8.3"
},
"dependencies": {
"ip": "^1.1.5",
"express": "^4.17.1",
"source-map-support": "^0.5.12",
"esm": "^3.2.25"
},
"scripts": {
"build": "ttsc",
"start": "node -r esm -r source-map-support/register ./dev-server.js",
"dev": "ttsc && concurrently \"ttsc -w\" \"nodemon\""
},
"nodemonConfig": {
"watch": [
"src"
],
"exec": "npm start",
"ext": "js"
},
"repository": {
"type": "git"
},
"author": "Maxwell DeVos",
"license": "ISC"
}