forked from dkarski/fbinstant-react-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.1 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
{
"name": "fbinstant-react-typescript-starter",
"description": "React Starter Kit is an opinionated boilerplate for fbinstant development built on top of React, TypeScript and styled-components, containing modern web development tool such as Webpack. Helping you to stay productive following the best practices. A solid starting point for both professionals and newcomers to the industry.",
"repository": {
"type": "git",
"url": "https://github.com/dkarski/fbinstant-react-typescript-starter.git"
},
"license": "MIT",
"author": "Daniel Karski",
"contributors": [
"Daniel Karski (https://github.com/dkarski)"
],
"scripts": {
"build": "webpack --config .webpack/config.js --env.env=production",
"develop": "webpack-dev-server --config .webpack/config.js --env.env=development",
"develop:fbinstant": "webpack-dev-server --https --config .webpack/fbinstant.js",
"archive": "webpack --config .webpack/archive.js",
"upload": "node .webpack/upload.bootstrap.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,html}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"@types/styled-components": "^4.1.18",
"@types/styled-system": "^5.1.0",
"copy-webpack-plugin": "^5.0.4",
"dotenv-webpack": "^1.7.0",
"html-webpack-plugin": "^4.0.0-beta.8",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"open": "^6.4.0",
"prettier": "^1.18.2",
"request": "^2.88.0",
"ts-loader": "^6.0.4",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3",
"uuid": "^3.3.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1",
"zip-webpack-plugin": "^3.0.0"
},
"engines": {
"node": ">=10.15.3",
"npm": ">=6.4.1"
}
}