Skip to content

Commit 452d822

Browse files
author
Craig Nguyen
committed
update
1 parent 8d18c83 commit 452d822

File tree

1 file changed

+55
-17
lines changed

1 file changed

+55
-17
lines changed

package.json

Lines changed: 55 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,57 @@
11
{
2-
"name": "re-up",
3-
"version": "1.0.0",
4-
"description": "upload files or photos with react",
5-
"main": "upload.js",
6-
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
8-
},
9-
"repository": {
10-
"type": "git",
11-
"url": "git+https://github.com/craigcosmo/ajax-upload.git"
12-
},
13-
"author": "",
14-
"license": "ISC",
15-
"bugs": {
16-
"url": "https://github.com/craigcosmo/ajax-upload/issues"
17-
},
18-
"homepage": "https://github.com/craigcosmo/ajax-upload#readme"
2+
"name": "js-play",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "main.js",
6+
"scripts": {
7+
"lint": "eslint app",
8+
"fix": "eslint --fix ."
9+
},
10+
"author": "Craig Nguyen",
11+
"license": "craig",
12+
"dependencies": {
13+
14+
},
15+
"devDependencies": {
16+
"babel-cli": "^6.23.0",
17+
"babel-core": "^6.23.1",
18+
"babel-eslint": "^7.1.1",
19+
"babel-loader": "^6.2.10",
20+
"babel-plugin-module-resolver": "^2.5.0",
21+
"babel-plugin-react-intl": "^2.3.1",
22+
"babel-plugin-transform-decorators-legacy": "^1.3.4",
23+
"babel-plugin-transform-remove-console": "^6.8.0",
24+
"babel-preset-es2015": "^6.22.0",
25+
"babel-preset-react": "^6.23.0",
26+
"babel-preset-stage-0": "*",
27+
"babel-register": "^6.23.0",
28+
29+
"eslint": "^3.15.0",
30+
"eslint-import-resolver-babel-module": "^3.0.0",
31+
"eslint-plugin-import": "^2.2.0",
32+
"eslint-plugin-json": "^1.2.0",
33+
"eslint-plugin-mocha": "^4.8.0",
34+
"eslint-plugin-react": "^6.9.0",
35+
"stylelint": "^7.8.0",
36+
"stylelint-scss": "^1.4.1"
37+
},
38+
"babel": {
39+
"presets": [
40+
"es2015",
41+
"stage-0"
42+
],
43+
44+
"plugins": [
45+
"transform-decorators-legacy",
46+
[
47+
"module-resolver",
48+
{
49+
"root": [
50+
"app/**",
51+
"translation"
52+
]
53+
}
54+
]
55+
]
56+
}
1957
}

0 commit comments

Comments
 (0)