-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "flask-starter",
"version": "2.0.0",
"description": "A light Python Flask skeleton site to start building with",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --env development -c webpack.config.js",
"build": "webpack --env production -c webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trev-dev/flask-starter.git"
},
"keywords": [
"Python",
"Flask"
],
"author": "Trevor Richards <trev@trevdev.ca>",
"license": "ISC",
"bugs": {
"url": "https://github.com/trev-dev/flask-starter/issues"
},
"homepage": "https://github.com/trev-dev/flask-starter#readme",
"devDependencies": {
"@popperjs/core": "^2.9.2",
"autoprefixer": "^10.2.6",
"css-loader": "^5.2.6",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.0",
"postcss-loader": "^5.3.0",
"sass": "^1.34.1",
"sass-loader": "^12.0.0",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {}
}