forked from nad2000/Flask-Timesheets
-
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.72 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.72 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": "state_time",
"version": "1.0.0",
"description": "A simple timesheet application for State employees. Or whomever.",
"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\"",
"test": "snyk test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bmcguirk/state_time.git"
},
"author": "Brian J. McGuirk",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/bmcguirk/state_time/issues"
},
"homepage": "https://github.com/bmcguirk/state_time#readme",
"dependencies": {
"bootstrap": "^4.0.0",
"font-awesome": "^4.7.0",
"jquery": "^3.2.1"
},
"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": "^3.19.0",
"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",
"snyk": "^1.41.1"
}
}