-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.52 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
{
"name": "console-rest",
"version": "0.0.0",
"description": "console.rest repository",
"main": "server.js",
"license": "No License",
"homepage": "https://github.com/luckymarmot/console-rest",
"dependencies": {
"babel-polyfill": "6.7.4",
"clipboard": "1.5.12",
"immutable": "3.7.6",
"javascript-decorators": "0.7.1",
"js-cookie": "2.1.0",
"react": "15.0.1",
"react-dom": "15.0.1"
},
"devDependencies": {
"autoprefixer": "6.3.6",
"babel-core": "6.7.4",
"babel-eslint": "6.0.2",
"babel-loader": "6.2.4",
"babel-plugin-rewire": "1.0.0-rc-2",
"babel-plugin-transform-decorators": "6.6.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.7.5",
"babel-plugin-transform-runtime": "6.6.0",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"babel-preset-stage-3": "6.5.0",
"babel-register": "6.7.2",
"clean-webpack-plugin": "0.1.8",
"copy-webpack-plugin": "^4.0.0",
"css-loader": "0.23.1",
"eslint": "2.7.0",
"eslint-loader": "1.3.0",
"eslint-plugin-react": "^4.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "0.8.5",
"html-webpack-plugin": "2.15.0",
"postcss-loader": "0.8.2",
"precss": "^1.4.0",
"react-addons-test-utils": "15.0.1",
"react-hot-loader": "^1.3.0",
"string-replace-webpack-plugin": "0.0.3",
"style-loader": "0.13.1",
"stylus": "0.54.2",
"stylus-loader": "2.0.0",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
},
"eslintConfig": {
"extends": "./linting/prod.yaml"
},
"options": {
"mocha": "./node_modules/.bin/mocha --require mocha --compilers js:babel-core/register --reporter spec"
},
"scripts": {
"test": "$npm_package_options_mocha \"src/**/__tests__/*-test.js\"",
"test:watch": "npm test -- --watch",
"prestart": "npm install",
"start": "./node_modules/.bin/webpack-dev-server",
"build": "rm -rf dist/ && BUILD_ENV=build ./node_modules/.bin/webpack --bail --display-error-details",
"dist": "npm install --production && NODE_ENV=production npm run build",
"lint": "./node_modules/eslint/bin/eslint.js -c linting/dev.yaml src/"
},
"bugs": {
"url": "https://github.com/luckymarmot/console-rest/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/luckymarmot/console-rest.git"
},
"engines": {
"node": "5.10.0"
}
}