This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.62 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
{
"scripts": {
"webpack": "cross-env NODE_ENV=production webpack",
"webpack-server": "webpack-dev-server --content-base src --hot --inline",
"test": "jest --silent",
"test:watch": "yarn test --watchAll",
"lint": "eslint --cache ./src --ext .js",
"lint:watch": "esw --cache ./src --ext .js -w --color",
"babel": "rm -rf ./lib && babel src --out-dir lib --ignore __tests__",
"babel:watch": "rm -rf ./lib && babel -w src --out-dir lib --ignore __tests__",
"build": "yarn babel && static static.config.js",
"prod": "yarn babel && cross-env NODE_ENV=production static static.config.js && yarn webpack",
"watch": "concurrently -c green \"yarn lint:watch\" \"yarn babel:watch\" \"yarn webpack-server\""
},
"name": "hsuting-github-io",
"version": "0.1.0",
"description": "Hsuting personal website",
"author": {
"name": "HsuTing",
"email": "[email protected]",
"url": "http://hsuting.com"
},
"main": "./lib/index.js",
"keywords": [
"personal website"
],
"pre-commit": [
"lint"
],
"homepage": "https://github.com/HsuTing/hsuting-github-io/",
"repository": {
"type": "git",
"url": "get+https://github.com/HsuTing/hsuting-github-io.git"
},
"bugs": {
"url": "https://github.com/HsuTing/hsuting-github-io/issues/"
},
"license": "MIT",
"dependencies": {
"cat-components": "^1.9.0",
"cross-env": "^5.0.5",
"d3": "^4.11.0",
"eases": "^1.0.8",
"fetch-everywhere": "^1.0.5",
"prop-types": "^15.6.0",
"radium": "^0.19.5",
"radium-normalize": "^2.0.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-icons": "^2.2.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cat-jest": "https://github.com/HsuTing/cat-jest.git",
"concurrently": "^3.5.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^4.8.0",
"eslint-config-cat": "https://github.com/HsuTing/eslint-config-cat.git",
"eslint-config-google": "^0.9.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-react": "^7.4.0",
"eslint-watch": "^3.1.2",
"jest": "^21.2.1",
"pre-commit": "^1.2.2",
"react-test-renderer": "^16.0.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1"
}
}