-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.05 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-template",
"version": "1.0.0",
"description": "Template app for Flask",
"private": true,
"directories": {
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"webpack:dev": "webpack --config webpack.dev.js",
"webpack:prod": "NODE_ENV=production webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RohanM/flask-template.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/RohanM/flask-template/issues"
},
"homepage": "https://github.com/RohanM/flask-template#readme",
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/preset-env": "7.15.6",
"autoprefixer": "10.3.4",
"babel-loader": "8.2.2",
"css-loader": "6.3.0",
"postcss": "8.3.6",
"postcss-loader": "6.1.1",
"postcss-preset-env": "6.7.0",
"style-loader": "3.2.1",
"tailwindcss": "2.2.15",
"webpack": "5.53.0",
"webpack-cli": "4.8.0",
"webpack-merge": "5.8.0"
}
}