-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
141 lines (141 loc) · 4.83 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "fuzzy-chainsaw",
"version": "2.4.6",
"description": "Boilerplate for component-based UI development",
"repository": "connectivedx/fuzzy-chainsaw",
"bugs": {
"url": "https://github.com/connectivedx/fuzzy-chainsaw/issues"
},
"author": "Connective DX",
"license": "MIT",
"directories": {
"source": "./source",
"dest": "./dist"
},
"scripts": {
"postinstall": "npm run dll",
"start": "http-server ./dist -p 8081",
"dev": "gulp clean:pre && npm-run-all --parallel build:dev test:dev",
"dll": "webpack --config ./build/webpack/webpack.config.dll.js --progress",
"dll:ci": "webpack --config ./build/webpack/webpack.config.dll.ci.js --progress",
"dll:production": "webpack --config ./build/webpack/webpack.config.dll.production.js --progress",
"dll:production:ci": "webpack --config ./build/webpack/webpack.config.dll.production.ci.js --progress",
"build:dev": "webpack-dev-server --config ./build/webpack/webpack.config.dev.js --progress",
"build": "gulp build",
"build:ci": "gulp build:ci",
"build:production": "gulp production",
"production": "npm-run-all dll:production build:production",
"production:ci": "gulp production:ci",
"full:build": "npm-run-all dll build",
"full:build:ci": "npm-run-all dll:ci build:ci",
"full:production": "npm-run-all dll:production build:production",
"full:production:ci": "npm-run-all dll:production:ci production:ci",
"test": "gulp test",
"test:dev": "karma start --auto-watch",
"watch": "gulp watch",
"new:atom": "gulp scaffold:atom --name",
"new:molecule": "gulp scaffold:molecule --name",
"new:organism": "gulp scaffold:organism --name",
"new:template": "gulp scaffold:template --name",
"new:stateful": "gulp scaffold:molecule:stateful --name",
"new:modifier": "gulp scaffold:modifier --name"
},
"engines": {
"node": ">=8.9.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-add-react-displayname": "^0.0.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"css-mqpacker": "^6.0.2",
"cssnano": "^3.7.7",
"del": "^3.0.0",
"dopl": "0.2.0",
"enhanced-resolve": "^3.4.1",
"enzyme": "^3.3.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "^1.1.6",
"gulp": "^3.9.1",
"gulp-file": "^0.4.0",
"gulp-htmlmin": "^4.0.0",
"gulp-if": "^2.0.2",
"gulp-merge": "^0.1.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"jsdom": "^11.6.0",
"json-loader": "^0.5.7",
"karma": "^1.7.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-tap": "^3.1.1",
"karma-webpack": "^2.0.9",
"loader-utils": "^1.1.0",
"lodash.startcase": "^4.4.0",
"markdown-loader": "^2.0.2",
"npm-run-all": "^4.1.2",
"null-loader": "^0.1.1",
"offline-plugin": "^4.9.0",
"packpath": "^0.1.0",
"postcss-cssnext": "^3.1.0",
"postcss-discard-empty": "^2.1.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.10",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^3.0.0",
"postcss-pipeline-webpack-plugin": "^3.0.1",
"postcss-remove-root": "^0.0.2",
"postcss-reporter": "^5.0.0",
"postcss-responsive-type": "^1.0.0",
"pre-commit": "^1.2.2",
"prismjs": "^1.10.0",
"progress-bar-webpack-plugin": "^1.9.3",
"querystring": "^0.2.0",
"reset-css": "^2.2.1",
"run-sequence": "^2.2.1",
"stats-webpack-plugin": "^0.6.2",
"style-loader": "^0.20.1",
"stylelint": "^8.4.0",
"stylelint-config-standard": "^18.0.0",
"tape": "^4.8.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.1",
"webpack-merge": "4.1.1",
"webpack-node-externals": "^1.6.0",
"webpack-notifier": "^1.5.1",
"webpack-svgstore-plugin": "^4.0.1"
},
"dependencies": {
"chroma-js": "^1.3.6",
"dom-select": "^1.1.1",
"enzyme-adapter-react-16": "^1.1.1",
"gulp-print": "^2.0.1",
"gulp-watch": "^5.0.0",
"html-loader": "^0.5.5",
"http-server": "^0.11.1",
"minimatch": "^3.0.4",
"object.assign": "^4.1.0",
"pretty": "^2.0.0",
"prop-types": "^15.6.0",
"rand-token": "^0.4.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-element-to-string": "1.0.2",
"react-custom-scrollbars": "^4.2.1"
}
}