Skip to content

Commit dcfd9aa

Browse files
committed
Update .gitignore and package.json: add environment files and enhance scripts
1 parent c9475b3 commit dcfd9aa

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
# misc
1515
.DS_Store
16+
.env
1617
.env.local
1718
.env.development.local
1819
.env.test.local
@@ -21,3 +22,12 @@
2122
npm-debug.log*
2223
yarn-debug.log*
2324
yarn-error.log*
25+
26+
# IDE
27+
.idea/
28+
.vscode/
29+
*.swp
30+
*.swo
31+
32+
# OS
33+
Thumbs.db

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"name": "rica",
33
"version": "1.1.2",
44
"private": true,
5+
"engines": {
6+
"node": ">=16.0.0 <20.0.0"
7+
},
58
"dependencies": {
69
"@blueprintjs/core": "^3.53.0",
710
"@fortawesome/fontawesome-svg-core": "^1.2.36",
@@ -30,7 +33,10 @@
3033
"scripts": {
3134
"start": "react-scripts start",
3235
"build": "react-scripts build",
36+
"build:inline": "react-scripts build && gulp",
3337
"test": "react-scripts test",
38+
"lint": "eslint --ext .js,.jsx src/",
39+
"lint:fix": "eslint --ext .js,.jsx src/ --fix",
3440
"eject": "react-scripts eject",
3541
"watch:css": "postcss -w src/styles/tailwind.css -o src/styles/output.css"
3642
},

0 commit comments

Comments
 (0)