-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.46 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
{
"name": "json-shapper",
"description": "A simple and flexible json transformer that allows developers to declare the transformation from the source to the target (possibly from server json to client json). Supporting plugins for easy customization.",
"version": "0.1.6",
"main": "build/main.js",
"types": "build/src/client/index.d.ts",
"scripts": {
"prod": "gulp",
"dev": "gulp -d",
"build": "gulp build",
"pushnpm": "gulp build && npm publish",
"analyze": "webpack-bundle-analyzer ./build/bundle_stats.json",
"test": "mocha"
},
"devDependencies": {
"assets-webpack-plugin": "^3.4.0",
"autoprefixer": "^6.4.0",
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-remove-strict-mode": "0.0.2",
"babel-preset-es2015": "^6.13.2",
"babel-preset-jscript": "^1.0.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"babel-template": "^6.15.0",
"babylon": "^6.10.0",
"css-loader": "^0.23.1",
"cssnano": "^3.7.3",
"del": "^2.2.2",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-debug": "^2.1.2",
"gulp-plumber": "^1.1.0",
"gulp-postcss": "^6.1.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.9",
"mocha": "^3.2.0",
"node-sass": "^3.8.0",
"npm": "^4.0.3",
"postcss-loader": "^0.10.1",
"run-sequence": "^1.2.2",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^14.0.0",
"ts-loader": "^1.2.2",
"tslint": "3.x.x",
"tslint-microsoft-contrib": "^2.0.13",
"typescript": "^2.1.4",
"url-loader": "^0.5.7",
"walk": "^2.3.9",
"webpack": "^1.13.1",
"webpack-bundle-analyzer": "^1.3.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.13.2",
"webpack-md5-hash": "^0.0.5",
"webpack-notifier": "^1.3.2",
"yargs": "^4.8.1"
},
"repository": "",
"license": "MIT",
"dependencies": {}
}