-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.94 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "one-nexus",
"version": "3.1.0",
"description": "A toolkit for architecting and constructing modular front-end user-interfaces",
"keywords": [
"css",
"sass",
"js",
"responsive",
"mobile-first",
"front-end",
"framework",
"boilerplate",
"web",
"development",
"theme",
"themes",
"html",
"html5"
],
"author": "(Edmund Reed)[http://twitter.com/esr360] <esr360@live.com>",
"homepage": "https://onenexus.io/",
"bugs": {
"url": "https://github.com/esr360/One-Nexus/issues"
},
"peerDependencies": {
"deep-extend": "^0.5.1",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"dependencies": {
"Sass-Boost": "^1.1.1",
"color": "^3.1.3",
"deep-extend": "^0.6.0",
"detect-browser": "^2.0.0",
"flickity": "^2.2.2",
"install": "^0.12.2",
"jquery": "^3.6.0",
"normalize-scss": "^7.0.0",
"prism-themes": "^1.7.0",
"prismjs": "^1.23.0",
"pubsub-js": "^1.9.3",
"pure-react-carousel": "^1.27.6",
"rc-table": "^6.10.15",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-hash-link": "^1.2.2",
"react-syntax-highlighter": "^6.1.2"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/preset-stage-0": "^7.8.3",
"@babel/register": "^7.13.16",
"@hot-loader/react-dom": "^16.14.0",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^3.6.0",
"eslint": "^4.14.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.24.0",
"esm": "^3.2.25",
"html-webpack-plugin": "^3.2.0",
"jsdoc": "^3.6.7",
"jsdom": "^11.11.0",
"jsdom-global": "^3.0.2",
"json-loader": "^0.5.7",
"mocha": "^3.4.2",
"node-sass": "^4.14.1",
"node-sass-json-importer": "^4.3.0",
"postcss-loader": "^3.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-hot-loader": "^4.13.0",
"sass-loader": "^8.0.2",
"sass-true": "^5.0.0",
"sassdoc": "^2.7.3",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^1.3.0",
"stylelint": "^13.13.1",
"stylelint-webpack-plugin": "^1.2.3",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-module-hot-accept": "^1.0.5",
"write-file-webpack-plugin": "^4.5.1"
},
"scripts": {
"start": "webpack-dev-server --env.build=development",
"start2": "node build/server.js",
"build": "npm run build:prod",
"build:dev": "webpack --env.build=development",
"build:prod": "webpack --env.build=production",
"build:static": "webpack --env.static=true --env.build=development && npm run sass:dev",
"lint": "npm run lint:js && npm run lint:scss",
"lint:js": "eslint './src/js/**/*.js'",
"lint:scss": "stylelint src/scss/**/*.scss",
"test": "npm run test:js && npm run test:scss",
"test:js": "mocha unit-testing/js/tests.js --require babel-register",
"test:scss": "mocha unit-testing/scss/tests.js --require babel-register",
"docs": "npm run docs:js && npm run docs:sass",
"docs:js": "jsdoc src/ui -r -d docs/js",
"docs:sass": "sassdoc src/ui -d docs/sass",
"sass:devx": "node-sass src/app.scss dist/assets/styles/app.css --output-style=expanded --importer=node_modules/node-sass-json-importer/dist/node-sass-json-importer.js",
"sass:dev": "node-sass src/app.scss dist/assets/styles/app.css --output-style=expanded --importer=../../sass-json-importer/sass-json-importer/dist/sass-json-importer.js",
"json-config": "node ../../Synergy/Synergy/utilities/generate-JSON-config.js 'src/app.json'"
}
}