forked from workshopbutler/js-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "workshop_butler_widget",
"version": "1.7.0",
"description": "Workshop Butler JS Widgets",
"author": "https://workshopbutler.com",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-typescript": "^7.1.0",
"@types/bootstrap": "^4.2.0",
"@types/chai": "^4.1.7",
"@types/jquery": "^3.3.29",
"@types/luxon": "^1.2.2",
"@types/mocha": "^5.2.6",
"@types/nunjucks": "^3.1.0",
"@types/urijs": "^1.15.38",
"ajv": "^6.6.2",
"autoprefixer": "^9.4.4",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^2.1.0",
"csso-loader": "^0.2.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^3.2.0",
"i18next": "^11.6.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"mocha": "^6.0.2",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"schema-dts": "^0.3.1",
"source-map-loader": "^0.2.4",
"style-loader": "^0.16.1",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tslint": "^5.12.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-shell-plugin": "^0.5.0"
},
"scripts": {
"dev": "NODE_ENV=dev webpack-dev-server --mode development",
"test": "mocha --require ts-node/register 'test/**/*.ts'",
"watch": "NODE_ENV=watch webpack-dev-server --mode development",
"build": "NODE_ENV=build webpack --mode production",
"build-wordpress": "NODE_ENV=build-wordpress webpack --mode production",
"check-css-style": "stylelint \"frontend/css/**/*.less\"",
"fix-css-style": "stylelint \"frontend/css/**/*.less\" --fix",
"check-ts-styles": "tslint --project .",
"fix-ts-styles": "tslint --project . --fix",
"check-types": "tsc"
},
"dependencies": {
"@types/i18next": "^12.1.0",
"core-js": "^2.6.5",
"luxon": "^1.3.3",
"npm": "^6.4.0",
"nunjucks": "^3.1.6",
"nunjucks-loader": "^3.0.0",
"postcss-loader": "^2.1.6",
"stylelint": "^9.10.1",
"typescript": "^3.4.1",
"urijs": "^1.19.1",
"zepto": "^1.2.0"
}
}