-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "toy-robot",
"version": "1.0.0",
"description": "Toy Robot Simulator",
"repository": "git@github.com:hjemmel/toy-robot.git",
"author": "Hans Jakob Emmel <hans.emmel@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --port 3000 --mode development --open --hot",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"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"
},
"engines": {
"node": "12.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"prettier --write",
"eslint --fix",
"stylelint --fix"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/plugin-proposal-class-properties": "7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.8.3",
"@babel/plugin-proposal-optional-chaining": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.4",
"@babel/preset-typescript": "7.9.0",
"@testing-library/jest-dom": "5.3.0",
"@testing-library/react": "10.0.3",
"@the-unicorns/eslint-config-react": "1.2.0",
"@the-unicorns/prettier-config": "1.0.2",
"@types/jest": "25.1.4",
"@types/react": "16.9.34",
"@types/react-dom": "16.9.6",
"@types/rebass": "4.0.4",
"@types/styled-components": "5.1.0",
"@types/styled-system": "5.1.9",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"babel-loader": "8.1.0",
"babel-plugin-styled-components": "1.10.7",
"core-js": "3.6.4",
"eslint": "6.8.0",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.19.0",
"html-webpack-plugin": "4.0.3",
"husky": "4.2.5",
"jest": "25.5.3",
"jest-junit": "10.0.0",
"lint-staged": "10.1.7",
"prettier": "2.0.2",
"stylelint": "13.6.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"ts-jest": "25.3.0",
"typescript": "3.8.3",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"dependencies": {
"@atlaskit/button": "13.3.9",
"@atlaskit/inline-dialog": "12.1.11",
"@atlaskit/textfield": "3.1.9",
"butter-toast": "3.3.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-icons": "3.9.0",
"rebass": "4.0.7",
"styled-components": "5.1.0",
"styled-normalize": "8.0.7",
"styled-system": "5.1.5"
}
}