-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.51 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
{
"name": "frontojs",
"version": "0.5.0",
"main": "dist/index.js",
"author": "Zack Siri",
"license": "MIT",
"scripts": {
"dev": "NODE_ENV=development webpack-dev-server --progress --hot --inline --config ./config/development.js",
"build": "NODE_ENV=production webpack --progress --config ./config/production.js",
"test": "BABEL_ENV=test jest"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"animate.css": "^3.7.0",
"classnames": "^2.2.5",
"fronto-api": "^1.0.2",
"fronto-connect": "^1.2.0",
"fronto-localize": "^1.0.0",
"mobx": "^5.6.0",
"mobx-react": "^5.4.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-router5": "^5.3.1",
"router5": "^5.6.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^7.1.6",
"babel-loader": "^8.0.4",
"node-sass": "^4.6.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-react-css-modules": "^3.3.2",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"file-loader": "^2.0.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^3.2.0",
"lodash-webpack-plugin": "^0.11.4",
"mini-css-extract-plugin": "^0.4.3",
"postcss-loader": "^2.0.8",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"sugarss": "^1.0.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.28.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
}
}