-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "app",
"engines": {
"node": "20.11.1",
"yarn": "1.22.22"
},
"dependencies": {
"@sentry/react": "^7.40.0",
"@sentry/tracing": "^7.40.0",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"build": "node esbuild.config.js",
"build:css": "sass ./app/assets/stylesheets/application.sass.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"check-types": "tsc --project tsconfig.json --noEmit --preserveWatchOutput",
"lint": "prettier 'app/javascript/**/*.*' 'app/assets/stylesheets/**/*.scss'",
"lint:fix": "prettier --write 'app/javascript/**/*.*' 'app/assets/stylesheets/**/*.scss'"
},
"devDependencies": {
"@types/react": "^17.0.53",
"@types/react-dom": "^18.2.19",
"esbuild": "^0.16.17",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"typescript": "^4.9.5"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}