generated from dapplets/dapplet-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.58 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
{
"name": "clean-my-wallet.dapplet-base.eth",
"version": "0.2.0",
"description": "Clean my NEAR wallet",
"main": "index.js",
"scripts": {
"postinstall": "concurrently -c \"yellow,magenta\" -n \"adapter,dapplet\" \"cd adapter && npm i\" \"cd dapplet-feature && npm i\"",
"start": "concurrently -c \"yellow,magenta\" -n \"adapter,dapplet\" \"cd adapter && npm start\" \"cd dapplet-feature && npm start\"",
"prettify": "prettier --write ../dapplet-template",
"eslint": "eslint ../dapplet-template --ext .ts --fix",
"stylelint": "stylelint ../dapplet-template/**/*.{css,scss,module.scss} --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dapplets/dapplet-template.git"
},
"author": "Dapplets Project",
"homepage": "https://github.com/dapplets/dapplet-template#readme",
"license": "ISC",
"bugs": {
"url": "https://github.com/dapplets/dapplet-template/issues"
},
"devDependencies": {
"concurrently": "^5.3.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^2.3.4",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"stylelint": "^14.14.1",
"stylelint-config-standard-scss": "^6.1.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0"
}
}