-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "react-app-rewire-styled-components-typescript",
"version": "1.0.0",
"description": "A plugin to add typescript-plugin-styled-components to a create-react-app with react-scripts-ts",
"repository": {
"type": "git",
"url": "https://github.com/AustinBrunkhorst/react-app-rewire-styled-components-typescript.git"
},
"main": "dist/index.js",
"license": "Unlicense",
"scripts": {
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist --ignore '*.test.js'",
"test": "jest src",
"prettier": "prettier --write --single-quote --trailing-comma es5 'src/**/*.js'"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --trailing-comma es5",
"git add"
]
},
"dependencies": {
"typescript-plugin-styled-components": "^0.0.6"
},
"peerDependencies": {
"react-app-rewired": "^1.5.2"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-preset-env": "^1.7.0",
"husky": "^0.13.4",
"jest": "19.x.x",
"lint-staged": "^3.6.1",
"prettier": "^1.3.1",
"rimraf": "^2.6.2"
}
}