This repository has been archived by the owner on Aug 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.43 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-esc-example",
"version": "1.0.0",
"description": "Example using React Easy to use Client and Server",
"license": "MIT",
"author": "Tycho Bokdam <[email protected]>",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"codecov": "cat coverage/*/lcov.info | codecov",
"compile": "better-npm-run compile",
"deploy": "better-npm-run deploy",
"deploy:dev": "better-npm-run deploy:dev",
"deploy:prod": "better-npm-run deploy:prod",
"start": "better-npm-run start",
"start:dev": "better-npm-run start:dev",
"start:prod": "better-npm-run start:prod",
"test": "better-npm-run test",
"test:dev": "npm run test -- --watch",
"eject": "babel-node node_modules/react-esc/eject.js",
"lint:check": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint:js:fix && npm run lint:style:fix",
"lint:js": "eslint --format=node_modules/eslint-formatter-pretty src test *.js",
"lint:js:fix": "eslint --fix --format=node_modules/eslint-formatter-pretty src test *.js",
"lint:style": "stylelint 'src/**/*.scss' --syntax scss --color",
"lint:style:fix": "stylefmt -r src/**/*.scss"
},
"dependencies": {
"better-npm-run": "0.1.0",
"debug": "^3.1.0",
"ip": "^1.1.5",
"isomorphic-fetch": "^2.2.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-esc": "^4.0.0-beta.10",
"react-esc-resolver": "^2.0.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.0.0",
"react-jss": "^8.3.5",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"eslint": "^4.19.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"normalize.css": "^8.0.0",
"react-addons-test-utils": "^15.6.2",
"stylelint": "^9.1.3",
"stylelint-config-standard": "^18.2.0"
},
"betterScripts": {
"compile": {
"command": "babel-node bin/compile",
"env": {
"DEBUG": "app:*"
}
},
"deploy": {
"command": "npm run clean && npm run compile",
"env": {
"DEBUG": "app:*"
}
},
"deploy:dev": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy:prod": {
"command": "npm run deploy",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "babel-node bin/server",
"env": {
"DEBUG": "app:*"
}
},
"start:dev": {
"command": "babel-node bin/server",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"start:prod": {
"command": "babel-node bin/server",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"test": {
"command": "babel-node ./node_modules/karma/bin/karma start bin/test",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
}
}
}