-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.43 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
{
"name": "non-functionals-react",
"version": "0.2.5",
"description": "A set of components available via the NPM registry for easy integration into any UNIT9 project using React.",
"main": "./dist/lib/index.js",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config ./webpack.dev.config.js --mode development",
"build": "./node_modules/.bin/webpack --config ./webpack.prod.config.js --mode=production",
"build:docs": "./node_modules/.bin/webpack --config ./webpack.dev.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:unit9/non-functionals-react.git"
},
"author": "Scott Ashmore",
"license": "ISC",
"homepage": "https://github.com/unit9/non-functionals-react#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.48",
"@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/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0-beta.48",
"@babel/preset-react": "^7.0.0-beta.48",
"babel-loader": "^8.0.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"react-hot-loader": "^4.2.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"detector-webgl": "^2.0.0",
"is-html": "^1.1.0",
"lodash.debounce": "^4.0.8",
"platform": "^1.3.5",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"semver-compare": "^1.0.0",
"styled-components": "^3.2.6",
"ua-parser-js": "^0.7.18"
}
}