-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "grigliata",
"version": "0.0.18",
"keywords": [
"react",
"styled-components",
"typescript"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/lcfd/grigliata",
"type": "git"
},
"homepage": "https://lcfd.github.io/grigliata",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@types/react": "^17.0.20",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.14",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.1",
"css-loader": "^6.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"npm-check": "^5.9.2",
"prepend-file": "^2.0.0",
"prettier": "^2.8.4",
"rollup": "^2.56.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"style-loader": "^3.3.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3",
"webpack": "^5.55.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
},
"scripts": {
"install-all": "yarn && cd docs && yarn",
"start-docs": "cd docs && yarn start",
"deploy-docs": "cd docs && yarn deploy",
"watch": "webpack watch",
"build": "webpack build --config ./webpack.config.prod.js --stats verbose",
"start": "webpack serve --open",
"dev-yalc": "yalc publish --push"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.1"
}
}