-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"name": "live-pages",
"version": "0.9.0",
"description": "A framework to build text-driven websites",
"main": "index.js",
"scripts": {
"init": "node init.js",
"client-debug": "webpack --config webpack.dev.js",
"client-develop": "webpack --config webpack.dev.js --watch",
"client-build": "webpack --config webpack.prod.js && node sw-generator.js",
"server-start": "nodemon starter.js",
"develop": "npm run client-develop & npm run server-start",
"start": "npm run client-build && npm run server-start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-fluxion/live-pages.git"
},
"bugs": {
"url": "https://github.com/team-fluxion/live-pages/issues"
},
"homepage": "https://github.com/team-fluxion/live-pages#readme",
"keywords": [
"website"
],
"author": "Mohammed Ismail Ansari <[email protected]>",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "5.15.0",
"ample-alerts": "1.4.4",
"axios": "0.20.0",
"bluebird": "3.7.2",
"body-parser": "1.19.0",
"cheerio": "1.0.0-rc.3",
"chokidar": "3.5.3",
"express": "4.17.1",
"fs-extra": "9.0.1",
"handlebars": "4.7.6",
"nodemon": "2.0.4",
"ws": "8.9.0"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"clean-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "4.6.0",
"css-loader": "2.1.0",
"effortless-css": "0.10.1",
"eslint": "5.13.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-myterminal": "0.9.1",
"eslint-loader": "2.1.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.0",
"eslint-plugin-react": "7.12.4",
"extract-text-webpack-plugin": "4.0.0-alpha.0",
"extracted-loader": "1.0.7",
"file-loader": "3.0.1",
"handlebars-loader": "1.7.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"less": "3.9.0",
"less-loader": "4.1.0",
"optimize-css-assets-webpack-plugin": "5.0.1",
"style-loader": "0.23.1",
"uglifyjs-webpack-plugin": "2.1.1",
"webpack": "4.25.1",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14",
"webpack-merge": "4.2.1"
}
}