-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.93 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "bulwark-ui",
"version": "0.1.2",
"description": "Bulwark Cryptocurrency front-end style and JavaScript framework.",
"main": "dist/bundle.js",
"homepage": "https://dustinengle.github.io/bulwark-ui/#/",
"repository": {
"type": "git",
"url": "https://github.com/dustinengle/bulwark-ui.git"
},
"keywords": [
"scss",
"library",
"framework",
"responsive",
"sass",
"bulwark",
"micro",
"open source",
"lightweight",
"frontend"
],
"author": {
"name": "Dustin Engle",
"url": "https://github.com/dustinengle"
},
"licenses": [
{
"type": "MIT License"
}
],
"private": false,
"scripts": {
"build": "rm -fR ./dist/* ./docs/* && yarn run build:sass && yarn run build:todo && cp -R ./dist/* ./docs",
"build:sass": "yarn run build:sass-dark && yarn run build:sass-light",
"build:sass-dark": "node sass-build.js dark && node sass-build.js dark min",
"build:sass-light": "node sass-build.js light && node sass-build.js light min",
"build:todo": "webpack --color",
"eject": "react-native-scripts eject",
"jsfmt": "./node_modules/.bin/standard --fix",
"start:mobile": "react-native-scripts start",
"start:web": "webpack-dev-server --color --hot",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx-source": "^7.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-rebem-jsx": "^0.3.3",
"babel-preset-env": "^1.7.0",
"babel-preset-expo": "^4.0.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.2",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"jest-expo": "^29.0.0",
"must": "^0.13.4",
"node-sass": "^4.9.2",
"prop-types": "^15.6.2",
"react-native-sass-transformer": "^1.2.3",
"react-native-scripts": "^1.14.0",
"react-test-renderer": "^16.5.0",
"sass-loader": "^7.0.3",
"sinon": "^6.1.6",
"standard": "^11.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"chart.js": "^2.7.2",
"d3-dsv": "^1.0.8",
"d3-format": "^1.3.0",
"d3-time-format": "^2.1.1",
"expo": "^29.0.0",
"react": "^16.4.1",
"react-chartkick": "^0.3.0",
"react-dom": "^16.4.1",
"react-native": "^0.56.1",
"react-router-dom": "^4.3.1",
"react-stockcharts": "^0.7.7",
"react-syntax-highlighter": "^8.0.1"
},
"standard": {
"parser": "babel-eslint"
},
"jest": {
"setupFiles": [
"./test/testSetup.js"
]
}
}