generated from garrett-green/preact-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "wee-bit",
"author": "Garrett Green",
"dependencies": {
"axios": "^0.21.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.11.8",
"nanoid": "^3.1.20",
"preact": "^10.5.5"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@testing-library/preact": "^2.0.1",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-preact": "^1.1.3",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"parcel-bundler": "^1.12.4",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.0.5"
},
"description": "Make URLs wee.",
"eslintIgnore": [
"dist/"
],
"license": "MIT",
"main": "src/client/index.html",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"scripts": {
"build-client": "parcel build src/client/public/index.html",
"build-server": "rm -rf dist/server/* && yarn run tsc",
"clean": "rm -rf dist/*",
"dev-client": "parcel src/client/public/index.html",
"dev-server": "nodemon --config \"./util/nodemon.json\"/",
"dev": "yarn run build-client; yarn run build-server; yarn run dev-server",
"lint": "eslint",
"test": "jest"
},
"version": "1.0.0"
}