-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
{
"name": "sunny-quotes",
"version": "2.0.3",
"description": "It's Always Sunny in Philadelphia Quote Generator",
"main": "index.js",
"engines": {
"node": "11.11.0"
},
"scripts": {
"build": "webpack --config ./config/webpack/webpack.config.js -d --progress --profile",
"clean": "rm -rf ./public/js",
"start": "ENV=prd NODE_ENV=development pm2-runtime start server/index.js",
"start:dev": "nodemon -e js,handlebars --watch server -r dotenv/config server/index.js",
"watch": "npm run clean; npm run build && npm start:dev"
},
"keywords": [],
"author": "RDP",
"license": "ISC",
"dependencies": {
"dotenv": "8.0.0",
"express": "4.16.2",
"express-handlebars": "3.0.0",
"fill-range": "5.0.0",
"pm2": "^3.5.0",
"react": "16.2.0",
"react-dom": "16.4.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "6.24.1",
"chai": "4.1.2",
"console-polyfill": "0.3.0",
"css-loader": "0.28.9",
"enzyme": "^3.9.0",
"less": "3.0.4",
"less-loader": "4.0.5",
"less-plugin-clean-css": "1.5.1",
"mocha": "5.0.0",
"nodemon": "1.18.10",
"postcss-loader": "2.1.1",
"prop-types": "15.6.1",
"style-loader": "0.20.1",
"webpack": "4.29.5",
"webpack-cli": "3.2.3",
"webpack-dev-middleware": "2.0.4"
}
}