-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 849 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 849 Bytes
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
{
"name": "FiverrOSS",
"version": "0.0.0",
"description": "Home for some OSS",
"private": true,
"scripts": {
"clean": "rm -rf .cache && rm -rf dist",
"prepare": "node ./prepare",
"build": "parcel build src/index.pug --public-url ./",
"start": "parcel src/index.pug",
"lint": "eslint '**/*.js'"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@fiverr/eslint-config-fiverr": "^3.2.4",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"parcel-bundler": "^1.12.5",
"pug": "^3.0.0",
"sass": "^1.26.10",
"xml-js": "^1.6.11"
},
"dependencies": {
"classnames": "^2.2.6",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}