-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.7 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "componentizer",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "run-p start:**",
"start:app": "react-scripts start",
"start:lambda": "netlify-lambda serve src/lambda",
"build": "run-p build:**",
"build:app": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyse": "npm run build:app && source-map-explorer 'build/static/js/*.js'",
"lint": "prettier .",
"format": "prettier . --write"
},
"dependencies": {
"@stylable/webpack-plugin": "3.4.1",
"@types/file-saver": "2.0.1",
"@types/jest": "25.2.1",
"@types/jszip": "3.1.7",
"@types/node": "13.11.1",
"@types/query-string": "6.3.0",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@types/react-router": "5.1.5",
"@types/react-router-dom": "5.1.4",
"@types/styled-components": "5.1.0",
"cloudinary": "^1.21.0",
"date-fns": "2.12.0",
"dotenv": "8.2.0",
"downshift": "5.1.0",
"file-saver": "2.0.2",
"filepond": "4.13.3",
"filepond-plugin-file-validate-type": "1.2.5",
"filepond-plugin-image-preview": "4.6.1",
"framer-motion": "^1.10.3",
"got": "10.7.0",
"http-proxy-middleware": "1.0.3",
"jszip": "3.3.0",
"netlify-lambda": "1.6.3",
"node-fetch": "2.6.0",
"npm-run-all": "4.1.5",
"polished": "3.5.1",
"prettier": "^2.0.4",
"query-string": "6.12.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-error-boundary": "1.2.5",
"react-filepond": "7.0.1",
"react-pose": "4.0.10",
"react-region-select": "2.3.0",
"react-router-dom": "5.1.2",
"react-scripts": "3.4.1",
"reactide-config": "1.0.2",
"source-map-explorer": "2.4.2",
"styled-components": "5.1.0",
"typescript": "3.8.3",
"uid": "^1.0.0",
"webpack-bundle-analyzer": "3.7.0"
},
"devDependencies": {
"webpack-cli": "3.3.11",
"webpack": "4.42.1",
"webpack-dev-server": "3.10.3",
"html-webpack-plugin": "4.2.0",
"@babel/cli": "7.8.4",
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/preset-react": "7.9.4",
"babel-loader": "8.1.0",
"css-loader": "3.5.2",
"file-loader": "6.0.0",
"node-sass": "4.13.1",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"url-loader": "4.1.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
}
}