-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.66 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
80
81
82
83
84
85
86
87
88
{
"name": "react-frost-core",
"version": "0.1.0",
"description": "The library of core frost components.",
"main": "dist/react-frost-core.min.js",
"style": "dist/react-frost-core.min.css",
"files": [
"dist",
"lib"
],
"scripts": {
"build-app-dev": "webpack-dev-server --config webpack.app.config.js",
"build-app-prod": "NODE_ENV=production webpack --config webpack.app.config.js",
"build-dist": "npm run build-dist-dev && npm run build-dist-prod",
"build-dist-dev": "webpack --config webpack.dist.config.js",
"build-dist-prod": "NODE_ENV=production webpack --config webpack.dist.config.js",
"deploy": "npm run build-app-prod && gh-pages -d public",
"postpublish": "codecov && npm run deploy",
"prepublishOnly": "npm run build-dist",
"test": "lintly app src && flow && jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dogma-io/react-frost-core.git"
},
"keywords": [
"core",
"component",
"components",
"frost",
"library",
"react",
"ui",
"widget",
"widgets"
],
"author": "Matthew Dahl <https://github.com/dogma-io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dogma-io/react-frost-core/issues"
},
"homepage": "https://github.com/dogma-io/react-frost-core#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-react-jsx": "7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "23.4.2",
"babel-loader": "8.0.2",
"babel-plugin-auto-css-modules": "1.1.1",
"babel-plugin-react-code-block": "0.3.0",
"babel-preset-nodely": "0.3.0",
"canvas-prebuilt": "1.6.5-prerelease.1",
"codecov": "3.0.4",
"css-loader": "1.0.0",
"enzyme": "3.5.0",
"enzyme-adapter-react-16": "1.3.1",
"enzyme-to-json": "3.3.4",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "2.0.0",
"flow-bin": "0.80.0",
"gh-pages": "1.2.0",
"jest": "23.5.0",
"lintly": "0.3.0",
"nodely": "0.8.0",
"postcss": "7.0.2",
"postcss-cli": "6.0.0",
"postcss-cssnext": "3.1.0",
"postcss-for": "2.1.1",
"postcss-import": "12.0.0",
"postcss-loader": "3.0.0",
"postcss-mixins": "6.2.0",
"prismjs": "1.15.0",
"react-router-dom": "4.3.1",
"style-loader": "0.23.0",
"svg-spritemap-webpack-plugin": "2.7.0",
"uglifyjs-webpack-plugin": "1.3.0",
"webpack": "4.17.1",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.7"
},
"dependencies": {
"grammatic": "0.0.2",
"react": "16.3.2",
"react-dom": "16.3.2",
"react-domlistener": "^1.0.5"
}
}