forked from nogtini/atomic-components
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.24 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
{
"name": "langa.io",
"version": "2.0.1",
"description": "Langa Website",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:webpack",
"start": "node server.js",
"test": "eslint api assets config test && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/langateam/langa.io.git"
},
"keywords": [
"langa",
"trails",
"trailsjs"
],
"author": "Langa Team <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/langateam/langa.io",
"devDependencies": {
"eslint": "^3",
"eslint-config-trails": "^2",
"eslint-plugin-react": "^6.9.0",
"mocha": "^3.2.0"
},
"dependencies": {
"babel": "^6.5.2",
"babel-core": "^6.13.2",
"babel-eslint": "^5.0.0-beta2",
"babel-loader": "^6.2.5",
"babel-plugin-css-modules-transform": "^0.2.0",
"babel-plugin-react-transform": "^1.1.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"css-loader": "^0.23.0",
"file-loader": "^0.8.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-imagemin": "^3.1.1",
"gulp-sass": "^3.1.0",
"hapi-react-views": "^9.2.1",
"html-webpack-plugin": "^2.15.0",
"node-sass": "^4.5.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-popover": "^0.4.4",
"react-router": "^4.0.0",
"react-router-dom": "^4.0.0",
"request-promise": "^4.1.1",
"rimraf": "^2.4.3",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.0",
"trailpack-gulp": "^1.0.2",
"trailpack-hapi": "^2.2.0",
"trailpack-repl": "^2.1.0",
"trailpack-router": "^2.1.0",
"trails": "^2.0.2",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0",
"webpack-stream": "^3.2.0",
"winston": "^2.3.1"
},
"eslintConfig": {
"extends": "trails/react",
"plugins": [
"react"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"sourceType": "module"
}
}
}
}