-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 722 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 722 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
{
"name": "typescript_tic_tac_toe",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"develop": "tsc && concurrently 'npm:typescript_watch' 'npm:parcel_watch' 'npm:server_watch'",
"clear": "rm -r lib dist",
"build": "tsc && parcel build src/index.html",
"typescript_watch": "tsc --watch",
"parcel_watch": "parcel watch src/index.html",
"server_watch": "http-server dist"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^14.14.20",
"@types/ramda": "^0.27.34",
"concurrently": "^5.3.0",
"http-server": "^0.12.3",
"parcel": "^1.12.4",
"typescript": "^4.1.3"
},
"dependencies": {
"ramda": "^0.27.1"
}
}