-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 852 Bytes
/
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
{
"name": "tfl-status",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"scripts": {
"client:dev": "cd ./client && yarn dev",
"client:build": "cd ./client && yarn build && cd ../ && node sitemap.js",
"client:preview": "cd ./client && yarn preview",
"lint:scss": "cd ./client && stylelint \"**/*.scss\"",
"lint:js": "eslint \"**/*.js\" \"**/*.jsx\"",
"postinstall": "cd ./client && yarn install && cd ../server && yarn install",
"server:dev": "cd ./server && yarn dev",
"server:dev:inspect": "cd ./server && yarn dev:inspect",
"server:build": "cd ./server && node index.js",
"sitemap": "node sitemap.js"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.7"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7"
}
}