forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.06 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
{
"name": "gutenberg",
"version": "0.1.0",
"description": "A new WordPress editor experience",
"main": "build/app.js",
"repository": "git+https://github.com/WordPress/gutenberg.git",
"author": "The WordPress Contributors",
"license": "GPL-2.0+",
"keywords": [
"WordPress",
"editor"
],
"dependencies": {
"classnames": "^2.2.5",
"clipboard": "^1.7.1",
"dom-react": "^2.2.0",
"dom-scroll-into-view": "^1.2.1",
"element-closest": "^2.0.2",
"hpq": "^1.2.0",
"jed": "^1.1.1",
"js-beautify": "^1.6.12",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"react": "^15.5.4",
"react-autosize-textarea": "^0.4.2",
"react-click-outside": "^2.3.0",
"react-datepicker": "^0.46.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-slot-fill": "^1.0.0-alpha.11",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"redux-optimist": "0.0.2",
"refx": "^2.0.0",
"rememo": "^1.1.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"@storybook/addon-info": "^3.0.1",
"@storybook/addon-knobs": "^3.0.1",
"@storybook/addon-options": "^3.0.1",
"@storybook/react": "^3.0.0",
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.0",
"babel-loader": "^6.4.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-jsx": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-traverse": "^6.24.1",
"chai": "^3.5.0",
"concurrently": "^3.4.0",
"cross-env": "^3.2.4",
"deep-freeze": "0.0.1",
"dirty-chai": "^1.2.2",
"enzyme": "^2.8.2",
"eslint": "^3.17.1",
"eslint-config-wordpress": "^1.1.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^2.1.0",
"gettext-parser": "^1.2.2",
"glob": "^7.1.1",
"jsdom": "^10.1.0",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.1",
"postcss-loader": "^1.3.3",
"prismjs": "^1.6.0",
"raw-loader": "^0.5.1",
"react-markdown": "^2.5.0",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"sinon-test": "^1.0.2",
"style-loader": "^0.14.1",
"tinymce": "^4.5.6",
"webpack": "^2.2.1",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"test-unit": "cross-env NODE_ENV=test webpack && mocha build --require bootstrap-test.js",
"build": "cross-env BABEL_ENV=default NODE_ENV=production webpack",
"gettext-strings": "cross-env BABEL_ENV=gettext webpack",
"lint": "eslint . .storybook",
"dev": "cross-env BABEL_ENV=default webpack --watch",
"test": "npm run lint && npm run test-unit",
"ci": "concurrently \"npm run build\" \"npm test\"",
"package-plugin": "./bin/build-plugin-zip.sh",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
}
}