This repository has been archived by the owner on Sep 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
{
"name": "hahow-recruitment",
"version": "0.1.0",
"description": "Mini project for Hahow recruitment",
"main": "index.js",
"repository": "https://github.com/weihanglo/hahow-recruitment",
"author": "Weihang Lo <weihanglotw@gmail.com>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production webpack -p --progress",
"lint": "eslint .",
"precommit": "npm run lint",
"start": "NODE_ENV=development webpack-dev-server -d --hot",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {
"@blueprintjs/core": "^2.0.0-beta.1",
"core-js": "^2.5.3",
"history": "^4.7.2",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-transition-group": "^2.2.1",
"redux": "^3.7.2",
"redux-observable": "^0.17.0",
"reselect": "^3.0.1",
"rxjs": "^5.5.6"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.37",
"@babel/preset-env": "^7.0.0-beta.37",
"@babel/preset-react": "^7.0.0-beta.37",
"@babel/preset-stage-2": "^7.0.0-beta.37",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.1.0",
"babel-loader": "^8.0.0-beta.0",
"css-loader": "^0.28.9",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jest": "^22.1.1",
"style-loader": "^0.19.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
}
}