-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (54 loc) · 1.15 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
{
"name": "js-playss",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"lint": "eslint app",
"fix": "eslint --fix ."
},
"author": "Craig Nguyen",
"license": "craig",
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-module-resolver": "^2.5.0",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-remove-console": "^6.8.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "*",
"babel-register": "^6.23.0",
"eslint": "^3.15.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^4.8.0",
"eslint-plugin-react": "^6.9.0",
"stylelint": "^7.8.0",
"stylelint-scss": "^1.4.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-decorators-legacy",
[
"module-resolver",
{
"root": [
"app/**",
"translation"
]
}
]
]
}
}