-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "quickie",
"version": "1.2.0",
"description": "quickie boilerplate",
"scripts": {
"start": "parcel",
"test": "npm run lint",
"lint": "eslint src",
"build": "parcel build",
"deploy": "surge --project ./dist",
"clean": "rimraf ./dist",
"copy": "cp ./src/CNAME ./dist",
"postbuild": "npm run copy",
"prebuild": "npm run clean"
},
"author": {
"name": "Thomas Lebeau",
"email": "[email protected]"
},
"license": "ISC",
"source": "src/index.html",
"type": "commonjs",
"devDependencies": {
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"browserslist-config-google": "^1.5.0",
"eslint": "^8.39.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"parcel": "^2.8.3",
"prettier": "^2.8.8",
"process": "^0.11.10",
"rimraf": "^5.0.0",
"surge": "^0.23.1"
},
"dependencies": {
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}