-
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) · 961 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 961 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": "ts-basic",
"version": "0.1.0",
"description": "basic typescript project with testing",
"main": "index.js",
"scripts": {
"dev:api": "canned -p 3001 ./",
"dev:app": "tsc --watch",
"dev:serve": "http-server -d false -e js -p 3000 -P http://localhost:3001",
"start:dev": "concurrently \"npm:dev:*\"",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsmith-sapient/ts-basic.git"
},
"keywords": [
"typscript",
"jest"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsmith-sapient/ts-basic/issues"
},
"homepage": "https://github.com/jsmith-sapient/ts-basic#readme",
"devDependencies": {
"@types/jest": "^24.0.11",
"canned": "^0.3.12",
"concurrently": "^4.1.0",
"http-server": "^0.11.1",
"jest": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.2"
},
"dependencies": {
"ky": "^0.9.0"
}
}