-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.52 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "cssbattle",
"version": "1.0.0",
"source": "src/index.html",
"author": "https://github.com/felipeog",
"license": "ISC",
"scripts": {
"build": "parcel build",
"generate-empty-targets": "ts-node ./scripts/generateEmptyTargets.ts",
"generate-readme": "ts-node ./scripts/generateReadme.ts",
"generate-targets-export": "ts-node ./scripts/generateTargetsExport.ts",
"lint-staged": "lint-staged",
"prepare": "husky install",
"scrape-targets-info": "ts-node ./scripts/scrapeTargetsInformation.ts",
"start": "parcel --no-cache --open",
"ts-node": "ts-node"
},
"dependencies": {
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"axios": "^0.26.1",
"eslint": "^8.8.0",
"eslint-plugin-react": "^7.28.0",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"parcel": "^2.2.1",
"parcel-plugin-static-files-copy": "^2.6.0",
"postcss": "^8.4.6",
"postcss-modules": "^4.3.0",
"prettier": "^2.5.1",
"puppeteer": "^21.3.4",
"ts-node": "^10.5.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"*.{html,css}": [
"prettier --write"
]
},
"browserslist": "> 0.5%, last 2 versions, not dead"
}