This repository has been archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.73 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
{
"name": "react-foundation-docs",
"version": "1.0.0",
"description": "Documentation for React + Foundation",
"main": "src/main.js",
"scripts": {
"start": "webpack-dev-server --inline --progress --colors --history-api-fallback --config webpack/development.js --open",
"dist": "webpack -p --config webpack/production.js",
"serve": "serve dist/",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digiaonline/react-foundation-docs.git"
},
"author": "Christoffer Niska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digiaonline/react-foundation-docs/issues"
},
"homepage": "https://github.com/digiaonline/react-foundation-docs#readme",
"engines": {
"node": "^10"
},
"devDependencies": {
"serve": "^14.1.2",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"acorn": "^6.4.1",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"component-playground": "^3.2.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^4.1.0",
"estraverse-fb": "^1.3.1",
"file-loader": "^3.0.1",
"foundation-sites": "^6.1.1",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.13.1",
"raw-loader": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-foundation": "^0.9.6",
"react-hot-loader": "^4.8.8",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}