-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.89 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
{
"name": "Easypeasy-blog",
"private": true,
"version": "0.1.0",
"description": "A simple blog with big plans.",
"scripts": {
"start": "node server/app.js",
"start:dev": "webpack-dev-server --open --hot --mode development",
"build": "NODE_ENV=production webpack --mode production",
"pretest": "NODE_ENV=test PORT=8888 node server/app.js &",
"test": "ava **/*_test.js --verbose",
"posttest": "pkill --signal SIGINT easypeasy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wurde/Easypeasy-blog.git"
},
"keywords": [
"Blog",
"Blog Platform",
"Lambda WEB19"
],
"author": [
"Andy Bettisworth",
"Brandon Pampuch",
"Moses Samuel"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/wurde/Easypeasy-blog/issues"
},
"homepage": "https://github.com/wurde/Easypeasy-blog#readme",
"ava": {
"babel": {
"testOptions": {
"babelrc": false,
"configFile": false
}
}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
},
"dependencies": {
"express": "^4.16.4",
"express-react-views": "^0.11.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"ava": "^1.4.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"puppeteer": "^1.14.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
}
}