-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
83 lines (83 loc) · 2.38 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "systematic",
"version": "3.1.1",
"main": "./index.js",
"description": "Simple tooling for frontend apps",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/polyconseil/systematic"
},
"scripts": {
"test": "npm install && cd sample && rm -rf node_modules && npm install && make clean dist && make test"
},
"keywords": [],
"author": "Polyconseil",
"license": "MIT",
"files": [
"CHANGES.md",
"default_config/*",
".eslintrc",
"index.js",
"js/*.js",
"mk/*.mk",
"package.json"
],
"dependencies": {
"@babel/core": "7.1.6",
"@babel/plugin-proposal-async-generator-functions": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"css-loader": "^1.0.1",
"easygettext": "^2.7.0",
"eslint": "^5.9.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^2.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"http-server": "^0.11.1",
"identity-obj-proxy": "^3.0.0",
"ini": "^1.3.5",
"ini2js": "^1.0.0",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"json-loader": "^0.5.7",
"lodash.defaultsdeep": "^4.6.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.10.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"standard": "^12.0.1",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"uglify-js": "^3.4.9",
"url-loader": "^1.1.2",
"vue-jest": "^3.0.0",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.26.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"engines": {
"node": ">=8"
}
}