-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.89 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
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "React Boilerplate",
"repository": "git@github.com:the-unicorns/react-boilerplate.git",
"author": "Hans Jakob Emmel <hans.emmel@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --port 3000 --mode development --open --hot",
"lint": "eslint 'src/**/*.{ts,tsx}' && stylelint 'src/**/*.{ts,tsx}'",
"lint:eslint": "eslint 'src/**/*.{ts,tsx}'",
"lint:stylelint": "stylelint 'src/**/*.{ts,tsx}'",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/styled-components": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"stylelint": "^12.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"styled-components": "^4.4.1"
}
}