-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
{
"name": "shirtnetwork-client",
"version": "1.0.0",
"description": "Shirtnetwork Designer Client",
"main": "dist/shirtnetwork-client.js",
"module": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:prod": "npm run build:es5 && npm run build:es6",
"build:es5": "BROWSERSLIST_ENV=production webpack --mode=production",
"build:es6": "BROWSERSLIST_ENV=modern webpack --mode=production",
"build:dev": "webpack --mode=development",
"start": "webpack serve --open --mode=development --host 0.0.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aggrosoft/shirtnetwork-client.git"
},
"keywords": [],
"author": "Alexander Kludt",
"license": "MIT",
"bugs": {
"url": "https://github.com/aggrosoft/shirtnetwork-client/issues"
},
"homepage": "https://github.com/aggrosoft/shirtnetwork-client#readme",
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"babel-loader": "^8.2.2",
"core-js": "^3.9.1",
"webpack": "^5.26.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-bundle-analyzer": "^4.5.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": "3.9"
}
]
]
},
"dependencies": {
"axios": "^0.21.1"
},
"browserslist": {
"production": [
"> 1%",
"ie 10",
"Safari >= 10"
],
"modern": [
"Chrome >= 60",
"Safari >= 10.1",
"iOS >= 10.3",
"Firefox >= 54",
"Edge >= 15"
]
}
}