-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
{
"name": "apex-challenge-tracker",
"version": "1.0.4",
"description": "Track your Apex Legends challenges",
"private": true,
"scripts": {
"cy:open": "cypress open",
"dev": "npm run watch",
"cy:run": "cypress run",
"cy:test": "start-server-and-test dev:server http://localhost:8000 cy:run",
"test": "jest",
"jest": "jest",
"coverage": "nyc -r text -e .ts -x \"tests/*.test.ts\" npm run test",
"build": "webpack",
"start": "npm run dev:server",
"dev:server": "serve -l 8000",
"dev:reload": "browser-sync reload",
"dev:browsersync": "browser-sync start",
"watch": "concurrently --kill-others \"npm run dev:browsersync\" \"npm run dev:server\" \"npm run watch:js\"",
"watch:js": "nodemon --watch \"src/\" --watch \"content/\" --exec \"npm run build && npm run dev:reload\""
},
"nodemonConfig": {
"ignore": [
"test/*",
"cypress/*"
],
"ext": "js,ts,html",
"delay": 0
},
"author": "elec0",
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^3.10.3",
"@types/jest": "^27.4.1",
"@types/lz-string": "^1.3.34",
"browser-sync": "^2.27.10",
"concurrently": "^7.0.0",
"cypress": "^12.12.0",
"expect": "^27.5.1",
"html-loader": "^3.1.0",
"jest": "^27.5.1",
"jest-codemods": "^0.25.1",
"jest-mock": "^27.5.1",
"jsdom": "^19.0.0",
"mock-local-storage": "^1.1.20",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"start-server-and-test": "^2.0.0",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"watchify": "^4.0.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"cash-dom": "^8.1.0",
"lz-string": "^1.4.4",
"serve": "^14.2.0"
}
}