-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.84 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
{
"name": "my-skyway-sample",
"description": "my skyway sample.",
"version": "0.1.0",
"main": "index.js",
"repository": "[email protected]:macinjoke/my-skyway-sample.git",
"author": "macinjoke <[email protected]>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "yarn eslint && yarn stylelint",
"eslint": "eslint --ext ts --ext tsx src --rulesdir rules --cache",
"stylelint": "stylelint --cache './src/**/*.tsx'"
},
"dependencies": {
"core-js": "^3.2.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-use": "^10.3.0",
"skyway-js": "^1.4.0",
"styled-components": "^5.0.0-beta.8"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@types/react": "^16.8.20",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.18",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-loader": "^8.0.6",
"config": "^3.2.2",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^5.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "^1.6.1",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"prettier": "^1.18.2",
"style-loader": "^1.0.0",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.2.1"
}
}