-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.05 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.05 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
{
"name": "react-grid-easy",
"version": "2.1.1",
"description": "A react grid system using css grid",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://grid.devosc.com"
},
"private": false,
"directories": {
"lib": "lib"
},
"peerDependencies": {
"react": "^16.10.2"
},
"gh-pages-deploy": {
"staticpath": "demo/dist",
"cname": "grid.devosc.com",
"commit": "a custom commit message",
"noprompt": false
},
"scripts": {
"sass": "gulp sass",
"predist": "grunt",
"dist": "NODE_ENV=production babel src --loose --out-dir lib",
"predev": "npm run dist",
"dev": "grunt serve",
"prepublishOnly": "npm run dist",
"deploy": "grunt deploy",
"predeploy": "npm run dist"
},
"author": {
"name": "oscmedgon"
},
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.10.2"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-do-expressions": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.5.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.6.0",
"@babel/plugin-proposal-pipeline-operator": "^7.5.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/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babelify": "^10.0.0",
"css-loader": "^3.2.0",
"grunt": "^1.0.4",
"grunt-browserify": "^5.3.0",
"grunt-build-control": "^0.7.1",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-connect": "^2.1.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-sass": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jit-grunt": "^0.10.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"react-dom": "^16.10.2",
"style-loader": "^1.0.0",
"transform-runtime": "0.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}