-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.83 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
{
"name": "kojak_flask",
"version": "1.0.0",
"description": "Project Kojak text editor",
"scripts": {
"build": "NODE_ENV=production ./node_modules/.bin/webpack --progress --colors -p",
"start": "./node_modules/.bin/concurrently -n \"WEBPACK,FLASK\" -c \"bgBlue.bold,bgMagenta.bold\" \"npm run webpack-dev-server\" \"npm run flask-server\"",
"webpack-dev-server": "NODE_ENV=debug ./node_modules/.bin/webpack-dev-server --port 2992 --hot --inline",
"flask-server": "FLASK_APP=$PWD/autoapp.py FLASK_DEBUG=1 flask run",
"lint": "eslint \"assets/js/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/everling-prime/kojak_flask.git"
},
"author": "David Skip Everling",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/everling-prime/kojak_flask/issues"
},
"homepage": "https://github.com/everling-prime/kojak_flask#readme",
"dependencies": {
"autoprefixer": "^7.1.3",
"bootstrap": "^4.0.0-beta",
"displacy-ent": "^1.0.2",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1",
"mongodb": "^2.2.31",
"node-sass": "^4.5.3",
"popper.js": "^1.12.5",
"quill": "^1.3.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"concurrently": "^3.5.0",
"css-loader": "^0.28.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"font-awesome-webpack": "0.0.5-beta.2",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"manifest-revision-webpack-plugin": "^0.4.0",
"raw-loader": "^0.5.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}