-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·85 lines (85 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fresh",
"version": "1.0.0",
"description": "App that tracks how to and when to clean rooms",
"author": "[email protected]",
"homepage": "https://github.com/jsyang/fresh",
"license": "MIT",
"scripts": {
"test": "jest",
"ts-watch": "tsc --noEmit -w -p .",
"regen-env": "node scripts/generateDotEnv.js",
"db:reset": "node scripts/resetDB.js",
"db:seed": "node scripts/seedDB.js",
"bake-html": "node scripts/bakeIndexHTML.js ; rm fresh.js",
"watch": "yarn regen-env ; parcel _dev.html --port 3000 --no-hmr --no-source-maps",
"build": "rm -rf .cache ; yarn regen-env ; parcel build _dev.html --no-source-maps --out-dir . ; yarn cleanup ; yarn bake-html",
"cleanup": "git checkout _dev.html ; mv client.*.js fresh.js"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/parcel-env": "^0.0.0",
"css": "^2.2.4",
"cssbeautify": "^0.3.1",
"diffable-html": "^4.0.0",
"history": "^4.7.2",
"jest": "^24.5.0",
"parcel-bundler": "^1.11.0",
"picostyle": "^2.0.1",
"preact": "^8.4.2",
"preact-render-to-string": "^4.1.0",
"preact-router": "^2.6.1",
"ts-jest": "^24.0.0",
"typescript": "^3.2.2",
"unistore": "^3.1.1"
},
"dependencies": {
"ddos": "^0.1.33",
"express": "^4.16.4",
"helmet": "^3.15.0",
"lodash.debounce": "^4.0.8",
"mongodb": "^3.1.10",
"node-fetch": "^2.3.0",
"promise.prototype.finally": "^3.1.0",
"twilio": "^3.26.1"
},
"jest": {
"cacheDirectory": ".jest-cache",
"automock": false,
"bail": false,
"testPathIgnorePatterns": [
".idea",
".cache",
"dist",
"/node_modules"
],
"collectCoverage": true,
"verbose": false,
"setupFilesAfterEnv": [
"./src/client/jest/setup.ts"
],
"collectCoverageFrom": [
"src/client/components/AdminScreen/**/*.{ts,tsx}",
"!node_modules/**",
"!**/*.d.ts"
],
"clearMocks": true,
"coverageReporters": [
"html"
],
"snapshotSerializers": [
"./src/client/jest/html.ts",
"./src/client/jest/css.ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "spec.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}