-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
package.json
File metadata and controls
84 lines (84 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
79
80
81
82
83
84
{
"name": "swift.js",
"version": "1.0.0",
"description": "Tiny opinionated web components framework",
"main": "build/index.js",
"scripts": {
"prestart": "rimraf build",
"prebuild": "npm run prestart",
"start": "webpack-serve config/webpack/config.js",
"build": "webpack --config config/webpack/config.js",
"start:dist": "npm run start -- --mode=production",
"build:dist": "npm run build -- --mode=production",
"postinstall": "rimraf .cache-loader"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trutoo/swift.js.git"
},
"keywords": [
"tiny",
"javascript",
"framework",
"web",
"components"
],
"author": "Trutoo AB",
"license": "MIT",
"bugs": {
"url": "https://github.com/trutoo/swift.js/issues"
},
"homepage": "https://github.com/trutoo/swift.js#readme",
"devDependencies": {
"@babel/core": "^7.0.0-rc.3",
"@babel/preset-env": "^7.0.0-rc.3",
"autoprefixer": "^9.1.3",
"babel-loader": "^8.0.0-beta.6",
"cache-loader": "^1.2.2",
"circular-dependency-plugin": "^5.0.2",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"css-mqpacker": "^7.0.0",
"cssnano": "^4.1.0",
"file-loader": "^2.0.0",
"fork-ts-checker-webpack-plugin": "^0.4.9",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"mini-css-extract-plugin": "^0.4.2",
"pixrem": "^4.0.1",
"pleeease-filters": "^4.0.0",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-conditionals": "^2.1.0",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^7.0.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-for": "^2.1.1",
"postcss-import": "^12.0.0",
"postcss-lh": "^2.0.2",
"postcss-loader": "^3.0.0",
"postcss-media-minmax": "^3.0.0",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1",
"postcss-simple-vars": "^4.1.0",
"postcss-url": "^8.0.0",
"style-loader": "^0.23.0",
"stylelint-config-standard": "^18.2.0",
"thread-loader": "^1.2.0",
"to-string-loader": "^1.1.5",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.17.1",
"webpack-serve": "^2.0.2"
},
"optionalDependencies": {
"@types/node": "^10.9.3"
}
}