-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.71 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
{
"name": "ec-react-starter-kit",
"private": true,
"version": "0.1.0",
"ecTools": {
"clean": [
"./dist/*"
],
"copy": {
"./src/static": "./dist/static"
},
"copyPackage": {
"scripts": {
"start": "node ./server"
}
}
},
"main": "dist/server.js",
"scripts": {
"start": "ec-tools serve devProxy watch",
"lint": "eslint src",
"test": "npm run lint && npm run test:coverage",
"test:watch": "jest --watch --bail --testPathPattern='/src/'",
"test:coverage": "jest --coverage --testPathPattern='/src/'",
"test:snapshot": "jest -u --testPathPattern='/src/'",
"devtool": "npm run build && devtool -r ./dist/server.js",
"clean": "ec-tools clean",
"copy": "ec-tools copy",
"bundle": "ec-tools bundle",
"build": "ec-tools build",
"image": "ec-tools image config:webpack.prod.config.js"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"^.+\\.s?css$": "<rootDir>/src/__mocks__/styles.mock.js"
}
},
"author": "Nicola Peduzzi <[email protected]> (http://nikso.net)",
"license": "MIT",
"devDependencies": {
"autoprefixer": "6.4.0",
"babel-cli": "6.14.0",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-jest": "15.0.0",
"babel-loader": "^6.0.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.0.15",
"babel-root-import": "4.1.3",
"css-loader": "0.24.0",
"cssnano": "3.7.4",
"ec-node-tools": "0.3.1",
"eslint": "3.7.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"estraverse-fb": "1.3.1",
"identity-obj-proxy": "3.0.0",
"jest": "15.1.1",
"json-loader": "0.5.4",
"postcss": "5.1.2",
"postcss-loader": "0.11.0",
"precss": "1.4.0",
"react-hot-loader": "3.0.0-beta.5",
"react-test-renderer": "15.3.2",
"style-loader": "0.13.1",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"auth0-lock": "10.4.0",
"babel-polyfill": "6.13.0",
"colors": "1.1.2",
"compression": "1.6.2",
"express": "4.14.0",
"http-auth": "2.4.10",
"jwt-decode": "2.1.0",
"morgan": "1.7.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-redux": "4.4.5",
"react-router": "2.7.0",
"react-router-redux": "4.0.5",
"redux": "3.6.0",
"redux-actions": "0.11.0",
"redux-logger": "2.6.1",
"redux-observable": "0.12.0",
"rxjs": "5.0.0-beta.12",
"webpack": "1.13.2"
}
}