-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "xr-app-loader",
"version": "1.0.29",
"description": "",
"main": "./lib/index",
"scripts": {
"build": "set NODE_ENV=production && webpack --output-filename xr-app-loader.js",
"build-min": "set NODE_ENV=production && set COMPRESS=1 && webpack --output-filename xr-app-loader.min.js",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"commit": "git add . && git commit -m 'zlj' && git push -u origin master",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "zlj",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"webpack": "^2.6.1"
},
"dependencies": {
"immutable": "^3.8.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.5",
"redux": "^3.6.0"
}
}