-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "@hodgef/slate-theme",
"version": "3.0.9",
"description": "Slate Theme for PRSS",
"main": "build/index.js",
"scripts": {
"build": "node scripts/build.js",
"test": "jest",
"prepare": "npm run build",
"trypublish": "npm publish || true",
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/prss-io/slate-theme"
},
"author": "Francisco Hodge <[email protected]> (https://github.com/hodgef)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prss-io/slate-theme/issues"
},
"homepage": "https://github.com/prss-io/slate-theme",
"keywords": [
"library",
"starter",
"es6"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-typescript": "^7.10.4",
"babel-loader": "^8.0.6",
"babel-preset-minify": "^0.5.0",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"file-loader": "^5.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jest": "^25.1.0",
"mini-css-extract-plugin": "^1.6.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"prss": "2.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-helmet": "^6.0.0",
"terser-webpack-plugin": "^2.3.5",
"typescript": "^3.8.3",
"url-loader": "^3.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/scripts/testMock.js",
"\\.(css|less)$": "<rootDir>/scripts/testMock.js"
}
}
}