-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ame",
"version": "1.0.0",
"description": "ame app",
"main": "src/app.js",
"engines": {
"node": "8.9.1"
},
"scripts": {
"security check": "nsp check",
"start": "run-p start:src api lint:watch",
"start:src": "nodemon --exec babel-node src/app.js",
"start:dist": "babel-node build/distServer.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./",
"lint:src": "esw -w --color src",
"lint:dist": "eslint dist",
"lint:watch": "npm run lint:src -- --watch",
"mock": "babel-node api/generateMockData.js",
"preapi": "npm run mock",
"api": "json-server --watch src/api/db.json --port 3001",
"prebuild": "rm -rf ./dist && mkdir dist",
"build": "babel-node build/build.js && babel src/app.js -o dist/app.js && babel src/modules -d dist/modules",
"postbuild": "run-s copy-static-assets",
"copy-static-assets": "cp -r src/img src/data dist/public",
"update": "ncu -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5aledmaged/ame.git"
},
"author": "Khaled Maged",
"license": "MIT",
"bugs": {
"url": "https://github.com/5aledmaged/ame/issues"
},
"homepage": "https://github.com/5aledmaged/ame#readme",
"dependencies": {
"body-parser": "^1.18.2",
"compression": "~1.7.1",
"cors": "^2.8.4",
"ejs": "~2.5.7",
"express": "~4.16.2",
"jquery": "~3.2.1",
"moment-timezone": "^0.5.14",
"raven-js": "~3.20.1",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"tz-lookup": "^6.1.3"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-loader": "~7.1.2",
"babel-preset-env": "~1.6.1",
"chalk": "~2.3.0",
"copy-webpack-plugin": "~4.2.1",
"css-loader": "~0.28.7",
"dotenv": "^4.0.0",
"eslint": "~4.13.1",
"eslint-loader": "~1.9.0",
"eslint-plugin-import": "~2.8.0",
"eslint-watch": "~3.1.3",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "~1.1.5",
"html-loader": "~0.5.1",
"html-webpack-plugin": "~2.30.1",
"json-schema-faker": "~0.4.6",
"json-server": "~0.12.1",
"less": "~2.7.3",
"less-loader": "~4.0.5",
"nodemon": "~1.12.5",
"npm-run-all": "~4.1.2",
"nsp": "~3.1.0",
"open": "0.0.5",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.6",
"rimraf": "~2.6.1",
"strip-loader": "~0.1.2",
"style-loader": "~0.19.0",
"url-loader": "~0.6.2",
"webpack": "~3.10.0",
"webpack-dev-middleware": "~1.12.1",
"webpack-sha-hash": "~2.0.0"
},
"browserslist": [
"> 1%",
"IE > 8",
"last 5 versions",
"not IE < 9"
]
}