-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "iati-validator",
"version": "0.0.1",
"description": "Validate IATI XML files",
"scripts": {
"build": "NODE_ENV=production webpack --progress --color",
"postinstall": "npm run build",
"start": "concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run webpack-dev-server\" \"npm run flask-server\"",
"webpack-dev-server": "NODE_ENV=debug webpack-dev-server --port 2992 --hot --inline",
"flask-server": "flask run",
"lint": "eslint \"assets/js/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeforIATI/validator.git"
},
"author": "Andy Lulham",
"license": "BSD-3-Clause",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/codeforIATI/validator/issues"
},
"homepage": "https://github.com/codeforIATI/validator#readme",
"dependencies": {
"babel-core": "*",
"babel-eslint": "*",
"babel-loader": "*",
"babel-preset-env": "*",
"bootstrap": "<5",
"bs-custom-file-input": "*",
"css-loader": "<1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "<3",
"font-awesome-webpack": "*",
"jquery": "*",
"less": "*",
"less-loader": "<6",
"manifest-revision-webpack-plugin": "*",
"popper.js": "*",
"raw-loader": "<1",
"style-loader": "<1",
"url-loader": "<2",
"webpack": "^3.1.0"
},
"devDependencies": {
"concurrently": "*",
"sync-exec": "*",
"webpack-dev-server": "<3"
}
}