-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "ssr-example",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/server.js",
"build": "webpack --mode production",
"build:dev": "webpack --mode development --watch",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*' --check",
"prettier:fix": "prettier '**/*' --write"
},
"author": "yceffort <[email protected]>",
"dependencies": {
"@types/isomorphic-fetch": "^0.0.36",
"@types/node": "^16",
"@types/react": "^17.0.8",
"@types/react-dom": "^17.0.5",
"@types/webpack": "^5.28.0",
"concurrently": "^7.3.0",
"isomorphic-fetch": "^3.0.0",
"raw-loader": "^4.0.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"source-map-loader": "^4.0.0",
"ts-loader": "^9.3.1",
"typescript": "^4.5.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@titicaca/eslint-config-triple": "^5.0.0",
"@titicaca/prettier-config-triple": "^1.0.2",
"eslint": "^8.38.0",
"prettier": "^2.8.7"
},
"license": "MIT"
}