-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.81 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
{
"name": "scaffold-react",
"description": "Scaffold React",
"private": false,
"scripts": {
"test": "npm run compile && mocha --compilers js:babel-core/register --recursive",
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- ./test --recursive",
"lint": "eslint -f table ./client ./server ./imports || exit 1",
"compile": "babel src --out-dir dist",
"client": "webpack-dev-server --port 3002 --config ./.webpack/webpack.client.js",
"proxy": "webpack-dev-server --config ./.webpack/webpack.proxy.js",
"server:debug": "DEBUG=apollo-express node_modules/babel-cli/bin/babel-node.js ./server/main.js",
"start": "npm run proxy & npm run server:debug"
},
"pre-push": [
"lint",
"test"
],
"dependencies": {
"@graphite/apollo-express": "^0.1.15",
"@graphite/decorators": "^0.1.14",
"apollo-client": "^0.10.1",
"debug": "^2.6.1",
"react": "^15.4.2",
"react-apollo": "^0.13.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.23.1",
"babel-istanbul": "^0.11.0",
"babel-loader": "^6.4.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.20.0",
"babel-preset-env": "^1.2.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.23.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"css-loader": "^0.27.3",
"eslint-plugin-react": "^6.10.3",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"install": "^0.8.7",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.14.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.3"
}
}