-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.31 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": "@oddcamp/analytics",
"description": "Odd Camp analytics helpers library",
"version": "0.0.7",
"author": "Odd Camp <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"predev": "yarn clear",
"dev": "parcel examples/index.html",
"prebuild": "yarn clear",
"build": "parcel build examples/index.html",
"clear": "del-cli --force ./.parcel-cache ./dist",
"lint": "eslint ./src --ext js",
"format": "eslint ./src --ext js --fix"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-syntax-flow": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.19.0",
"del-cli": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-html-erb": "^1.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"parcel": "^2.7.0",
"posthtml-expressions": "^1.10.0",
"posthtml-shorten": "^1.0.0",
"prettier": "^2.7.1"
}
}