-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "dataslayer",
"version": "1.5.1",
"private": true,
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-feather": "^1.1.6",
"react-hotkeys": "^2.0.0",
"react-scripts": "3.3.0",
"uuid": "^3.3.3"
},
"scripts": {
"start": "react-scripts start",
"build": "INLINE_RUNTIME_CHUNK=false react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"package": "INLINE_RUNTIME_CHUNK=false react-scripts build && rm ./package.zip; cd ./build && zip -r ../package.zip *"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 5 Chrome versions",
"Firefox ESR"
],
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"devDependencies": {
"@types/chrome": "0.0.83",
"web-ext": "^3.2.1"
}
}