forked from neomjs/neo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 3.47 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": "neo.mjs",
"version": "1.0.12",
"description": "The webworkers driven UI framework",
"repository": {
"type": "git",
"url": "https://github.com/neomjs/neo.git"
},
"scripts": {
"server-start": "webpack-dev-server --open",
"create-app": "node ./buildScripts/createApp.js",
"dev-build-my-apps": "webpack --config ./buildScripts/webpack/development/webpack.config.myapps.js",
"prod-build-my-apps": "webpack --config ./buildScripts/webpack/production/webpack.config.myapps.js",
"generate-docs-json": "node ./buildScripts/docs/jsdocx.js",
"build-development": "webpack --config ./buildScripts/webpack/development/webpack.config.js",
"build-production": "webpack --config ./buildScripts/webpack/production/webpack.config.js",
"dev-css-structure": "webpack --config ./buildScripts/webpack/development/webpack.scss.config.js --env.json_file=neo.structure.json",
"dev-theme-dark": "webpack --config ./buildScripts/webpack/development/webpack.scss.config.js --env.json_file=theme.dark.json",
"dev-theme-light": "webpack --config ./buildScripts/webpack/development/webpack.scss.config.js --env.json_file=theme.light.json",
"prod-css-structure": "webpack --config ./buildScripts/webpack/production/webpack.scss.config.js --env.json_file=neo.structure.json",
"prod-theme-dark": "webpack --config ./buildScripts/webpack/production/webpack.scss.config.js --env.json_file=theme.dark.json",
"prod-theme-light": "webpack --config ./buildScripts/webpack/production/webpack.scss.config.js --env.json_file=theme.light.json",
"dev-theme-dark-no-css4": "webpack --config ./buildScripts/webpack/development/webpack.scss.config.js --env.json_file=theme.dark.noCss4.json",
"dev-theme-light-no-css4": "webpack --config ./buildScripts/webpack/development/webpack.scss.config.js --env.json_file=theme.light.noCss4.json",
"prod-theme-dark-no-css4": "webpack --config ./buildScripts/webpack/production/webpack.scss.config.js --env.json_file=theme.dark.noCss4.json",
"prod-theme-light-no-css4": "webpack --config ./buildScripts/webpack/production/webpack.scss.config.js --env.json_file=theme.light.noCss4.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["javascript","frontend","framework","webworker","ecmascript","css","json"],
"author": "Tobias Uhlig, Rich Waters",
"license": "MIT",
"bugs": {
"url": "https://github.com/neomjs/neo/issues"
},
"homepage": "https://neomjs.github.io/pages/",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"autoprefixer": "^9.7.2",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"deasync": "^0.1.15",
"fs": "^0.0.1-security",
"highlightjs-line-numbers.js": "^2.7.0",
"html-webpack-plugin": "^3.2.0",
"inquirer": "^7.0.0",
"jsdoc": "^3.6.3",
"jsdoc-x": "^4.0.3",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.0",
"siesta-lite": "^5.3.0",
"style-loader": "^1.0.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-node-externals": "^1.7.2"
},
"funding": {
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/tobiu"
}
}