-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.67 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
55
56
57
58
{
"name": "www",
"version": "1.1.4",
"license": "MIT",
"homepage": "https://designhub.fun/",
"private": true,
"author": "designhub",
"contributors": [
{
"name": "Florentin",
"url": "https://florentin.design"
},
{
"name": "Lukas Fruntke (LukvonStrom)",
"email": "lukas@fruntke.tech",
"url": "https://fruntke.tech"
},
{
"name": "Fin Reinhhard",
"email": "fin.reinhard@icloud.com",
"url": "http://Angu.li"
}
],
"dependencies": {
"history": "^4.9.0",
"is-url-external": "^1.0.3",
"piwik-react-router": "^0.12.1",
"prop-types": "^15.7.2",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-google-invisible-recaptcha": "^0.2.11",
"react-helmet": "^5.2.1",
"react-router-dom": "^5.0.1",
"react-scripts": "3.1.2",
"react-typekit": "^1.1.4",
"sweetalert2-react": "^0.8.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/react": "^16.9.2",
"prettier": "^1.18.2"
},
"scripts": {
"start": "npm run prettier && react-scripts start",
"build": "npm run prettier && react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:debug": "react-scripts --inspect-brk test --runInBand --env=jsdom",
"eject": "react-scripts eject",
"prettier": "prettier --write src/**/*.{js,json,jsx}"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"bracketSpacing": false
}
}