-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "smart-store",
"main": "lib/index.js",
"version": "0.1.24",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"redux": "^3.3.1",
"redux-thunk": "^2.0.1",
"validator": "^5.1.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^2.4.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-react": "^4.2.3",
"estraverse-fb": "^1.3.1",
"html-webpack-plugin": "^2.12.0",
"mocha": "^2.4.5",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-hot-loader": "^1.3.0",
"react-json-tree": "^0.6.1",
"react-modal": "^0.6.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha",
"eslint": "./node_modules/.bin/eslint ./src ./test",
"prebuild": "rm -rf lib && npm run eslint && npm run test",
"build": "./node_modules/.bin/babel ./src --out-dir ./lib",
"prepublish": "npm run build",
"playground": "PROD_DEV=1 ./node_modules/.bin/babel-node -- ./node_modules/.bin/webpack-dev-server --port 3010 --inline --colors"
}
}