-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.34 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.34 KB
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
{
"name": "reactful",
"version": "3.1.3",
"description": "An opinionated practical CLI for developing full-stack server-rendered React applications. You can use it to generate an independent React application (optionally with TypeScript) that's fully-configured to render on both client and server. You can also use it to render simple template applications (without SSR).",
"repository": "jscomplete/reactful",
"author": "Samer Buna <samer@jscomplete.com>",
"license": "MIT",
"scripts": {
"eslint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write src/ templates/ \"*.{ts,tsx,js,json}\"",
"test": "jest src/**/*",
"build": "rm -rf lib && tsc --sourceMap false --skipLibCheck true"
},
"bin": {
"reactful": "lib/bin/reactful.js",
"rr": "lib/bin/reactful.js"
},
"dependencies": {
"commander": "^5.1.0",
"fs-jetpack": "^2.4.0",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.49",
"typescript": "^3.9.5",
"typesync": "^0.7.0"
}
}