-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.49 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.49 KB
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
{
"name": "dlib",
"version": "1.0.0",
"description": "Durham Library Civil Rights Heritage Project Microsite",
"main": "index.js",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"fetch-content": "node ./scripts/airtable.js",
"start": "webpack-dev-server --open",
"prebuild": "rm -R dist/* && cp favicon.ico ./_redirects ./robots.txt ./dist && mkdir ./dist/app && cp -R ./app/assets ./dist/app",
"build": "webpack --config ./webpack.config.js --mode production",
"postbuild": "react-snap"
},
"reactSnap": {
"source": "./dist"
},
"dependencies": {
"file-loader": "^6.0.0",
"gsap": "^3.4.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-focus-lock": "^2.4.1",
"react-ga": "^3.1.2",
"react-helmet": "^6.1.0",
"react-image-lightbox": "^5.1.1",
"react-lazy-load": "^3.1.13",
"react-router-dom": "^5.2.0",
"react-snap": "^1.23.0",
"styled-components": "^5.1.1",
"styled-normalize": "^8.0.7",
"terser-webpack-plugin": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"airtable-json": "^1.2.6",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.7",
"clean-webpack-plugin": "^3.0.0",
"colors": "^1.4.0",
"css-loader": "^3.4.0",
"cssnano": "^4.1.10",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"image-downloader": "^4.0.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"path": "^0.12.7",
"postcss-easy-import": "^3.0.0",
"postcss-loader": "^3.0.0",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-url": "^8.0.0",
"prop-types": "^15.7.2",
"react-markdown": "^4.3.1",
"sass-loader": "^9.0.3",
"style-loader": "^1.1.2",
"stylelint": "^13.6.1",
"stylelint-config-airbnb": "^0.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-custom-processor-loader": "^0.6.0",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-scss": "^3.18.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-fix-style-only-entries": "^0.5.1"
}
}