-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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": "@logto/browser-sample",
"version": "2.0.24",
"license": "MIT",
"private": true,
"source": "public/index.html",
"scripts": {
"precommit": "lint-staged",
"start": "parcel public/index.html -p 3000",
"build": "rm -rf dist && parcel build public/index.html --no-autoinstall",
"lint": "eslint --ext .js src",
"stylelint": "stylelint \"src/**/*.scss\""
},
"dependencies": {
"@logto/browser": "workspace:^"
},
"devDependencies": {
"@parcel/core": "^2.9.2",
"@parcel/transformer-sass": "^2.9.2",
"@silverhand/eslint-config": "^6.0.1",
"@silverhand/eslint-config-react": "^6.0.2",
"eslint": "^8.57.0",
"lint-staged": "^15.0.0",
"parcel": "^2.9.2",
"postcss": "^8.4.31",
"prettier": "^3.0.0",
"stylelint": "^16.0.0",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "@silverhand",
"globals": {
"window": true,
"document": true
}
},
"stylelint": {
"extends": "@silverhand/eslint-config-react/.stylelintrc"
},
"prettier": "@silverhand/eslint-config/.prettierrc"
}