-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
99 lines (99 loc) · 3.32 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "elaborate",
"version": "1.0.0",
"engines": {
"node": "12"
},
"description": "A place to elaborate on what you learned",
"main": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/elaborate.git"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/kentcdodds/elaborate/issues"
},
"homepage": "https://github.com/kentcdodds/elaborate#readme",
"scripts": {
"prebuild": "npm run css:build",
"build": "concurrently --names \"remix,tsc\" --prefix-colors \"magenta,blue\" \"remix build\" \"tsc --build\"",
"dev": "cross-env NODE_ENV=development concurrently --names \"remix,css,firebase\" --prefix-colors \"magenta,cyan,yellow\" \"remix run > /dev/null\" \"npm run css:watch\" \"firebase emulators:start\"",
"deploy": "firebase deploy",
"start": "firebase emulators:start",
"css:build": "postcss styles --base styles --dir app/ --env production",
"css:watch": "postcss styles --base styles --dir app/ -w",
"cy:run": "cypress run",
"cy:open": "cypress open",
"test:e2e": "start-server-and-test dev http://localhost:500 cy:open",
"test:e2e:run": "start-server-and-test start http://localhost:5000 cy:run",
"test": "kcd-scripts test",
"lint": "kcd-scripts lint",
"format": "kcd-scripts format",
"typecheck": "concurrently --names \"server,app,cypress\" --prefix-colors \"red,green,blue\" \"tsc --project server --noEmit\" \"tsc --project app --noEmit\" \"tsc --project cypress --noEmit\"",
"validate": "kcd-scripts validate",
"setup": "npm install && npm run validate"
},
"dependencies": {
"@remix-run/cli": "^0.8.0",
"@remix-run/core": "^0.8.0",
"@remix-run/data": "^0.8.0",
"@remix-run/express": "^0.8.0",
"@remix-run/react": "^0.8.0",
"@sindresorhus/slugify": "^1.1.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"firebase": "^8.1.1",
"firebase-admin": "^9.4.1",
"firebase-functions": "^3.11.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^6.0.0-beta.0",
"react-router-dom": "^6.0.0-beta.0",
"rehype-stringify": "^8.0.0",
"remark-parse": "^9.0.0",
"remark-rehype": "^8.0.0",
"tailwindcss": "^2.0.1",
"unified": "^9.2.0",
"wait-on": "^5.2.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.3.1",
"@testing-library/cypress": "^7.0.2",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.2.2",
"@types/estree": "0.0.45",
"@types/express": "^4.17.9",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"autoprefixer": "10.0.2",
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"cypress": "^6.0.0",
"eslint-import-resolver-jest": "^3.0.0",
"kcd-scripts": "^7.1.0",
"kill-port": "^1.6.1",
"msw": "^0.22.3",
"postcss": "^8.1.10",
"postcss-cli": "8.3.0",
"start-server-and-test": "^1.11.6",
"ts-node": "^9.0.0",
"type-fest": "^0.20.1",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"build",
"*.d.ts",
"storybook-static"
]
}