-
-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathpackage.json
79 lines (79 loc) · 3.95 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
{
"name": "neo.mjs",
"version": "1.0.62",
"description": "The webworkers driven UI framework",
"repository": {
"type": "git",
"url": "https://github.com/neomjs/neo.git"
},
"scripts": {
"server-start": "webpack-dev-server --open",
"build-all": "node ./buildScripts/buildAll.js",
"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",
"dev-build-all-my-apps": "webpack --config ./buildScripts/webpack/development/webpack.config.myapps.js --env.build_all=true",
"prod-build-all-my-apps": "webpack --config ./buildScripts/webpack/production/webpack.config.myapps.js --env.build_all=true",
"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/",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.1",
"autoprefixer": "^9.7.4",
"clean-webpack-plugin": "^3.0.0",
"commander": "^4.1.1",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"deasync": "^0.1.19",
"fs-extra": "^8.1.0",
"highlightjs-line-numbers.js": "^2.7.0",
"html-webpack-plugin": "^3.2.0",
"inquirer": "^7.0.4",
"jsdoc": "^3.6.3",
"jsdoc-x": "^4.1.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3",
"webpack-node-externals": "^1.7.2",
"webpack-shell-plugin": "^0.5.0"
},
"devDependencies": {
"siesta-lite": "^5.3.1"
},
"funding": {
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/tobiu"
}
}