-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "emini",
"version": "0.0.1",
"description": "a very simple react",
"main": "./src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "NODE_ENV=development jest",
"server": "node server",
"dev": "node ./node_modules/webpack/bin/webpack.js --config ./webpack.config.dev.js",
"build": "node ./node_modules/webpack/bin/webpack.js --config ./webpack.config.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuanxiang1990/ReactMe.git"
},
"keywords": [
"react"
],
"author": "yuanx",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuanxiang1990/react-me/issues"
},
"homepage": "https://github.com/yuanxiang1990/react-me#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"express": "^4.16.4",
"happypack": "^5.0.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.7.1",
"opn": "^6.0.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-middleware": "^3.6.2",
"webpack-hot-middleware": "^2.24.4"
}
}