-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 820 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 820 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
{
"name": "timer-html",
"version": "1.0.0",
"main": "index.js",
"author": "Davy Engone <davy@hackages.io>",
"license": "MIT",
"dependencies": {
"rxjs": "^6.6.6",
"typescript": "^4.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/lodash": "^4.14.168",
"chai": "^4.3.0",
"jest": "^26.6.3",
"live-server": "^1.2.1",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"rxjs-marbles": "^6.0.1",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"scripts": {
"start": "run-p server web",
"server": "webpack --watch",
"web": "live-server",
"test": "jest --isolatedModules=false --config jest.config.js --json --outputFile=jest-report.json",
"test:watch": "jest --watch"
}
}