-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 4 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
121
122
123
124
{
"name": "Puzzle",
"version": "1.0.0",
"description": "Puzzle",
"main": "main.js",
"homepage": "https://github.com/polyptychon/puzzle-limnos",
"license": "MIT",
"author": {
"name": "Harris Sidiropoulos",
"email": "harris.sidiropoulos@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/harrissidiropoulos/flights"
},
"dependencies": {
"array-unique": "0.3.2",
"react": "15.1.0",
"react-addons-css-transition-group": "^15.4.0",
"react-dom": "15.1.0",
"react-redux": "4.4.5",
"react-redux-i18n": "^0.1.1",
"react-router": "3.0.0",
"redux": "3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "6.0.3",
"babel-core": "6.10.4",
"babel-eslint": "6.1.0",
"babel-jest": "15.0.0",
"babel-loader": "6.2.4",
"babel-plugin-__coverage__": "11.0.0",
"babel-plugin-transform-class-properties": "6.11.5",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-es2015-webpack": "6.4.1",
"babel-preset-react": "6.11.1",
"babel-preset-react-hmre": "1.1.0",
"babel-preset-stage-2": "6.11.0",
"chai": "3.5.0",
"compression-webpack-plugin": "^0.3.2",
"cpy-cli": "1.0.1",
"css-loader": "0.23.1",
"electron": "^1.4.8",
"electron-packager": "^8.3.0",
"electron-prebuilt": "^1.4.8",
"eslint": "2.13.1",
"eslint-config-kentcdodds": "6.2.1",
"eslint-import-resolver-webpack": "0.3.1",
"eslint-plugin-react": "5.2.2",
"express": "4.13.3",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.8.5",
"gh-pages": "0.11.0",
"ghooks": "1.3.2",
"html-webpack-plugin": "2.22.0",
"imageoptim-cli": "1.14.8",
"jade": "1.11.0",
"jade-loader": "0.8.0",
"jest": "15.1.1",
"nock": "8.0.0",
"node-sass": "4.5.3",
"npm-run-all": "2.2.2",
"object-array-converter": "1.0.0",
"offline-plugin": "3.4.1",
"opt-cli": "1.5.1",
"pug": "2.0.0-beta3",
"pug-loader": "1.0.2",
"react-addons-test-utils": "15.3.0",
"react-transform-hmr": "1.0.0",
"redux-logger": "2.6.1",
"redux-mock-store": "1.1.2",
"rimraf": "2.5.3",
"sass-loader": "3.2.0",
"strip-loader": "0.1.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "2.1.0-beta.4",
"webpack-dev-middleware": "1.5.1",
"webpack-dev-server": "2.1.0-beta.0",
"webpack-hot-middleware": "2.10.0",
"webpack-recompilation-simulator": "1.3.0",
"webpack-validator": "2.2.7"
},
"config": {
"ghooks": {
"pre-commit": "opt --in pre-commit --exec \"npm run validate\""
}
},
"babel": {
"presets": [
"es2015",
"stage-2",
"react"
],
"plugins": [
"transform-class-properties"
]
},
"scripts": {
"prebuild": "rimraf dist",
"build": "webpack --env.prod",
"postbuild": "npm run fix-sw; npm run optimize-images",
"build-electron": "electron-packager . --platform=darwin,win32 --ignore=node_modules,.gitignore,src,webpack.config.js,webpack-records.json,server.js,yarn.lock,firebase.json,database.rules.json --out=app --version-string.CompanyName=\"Polyptychon\"",
"fix-sw": "sed 's/\\.\\//assets\\//g;s/assets\\/\\.assets//g;' dist/assets/sw.js > dist/sw.js",
"build:dev": "webpack --env.dev",
"start": "node server",
"optimize-images": "imageoptim -a -d dist/assets",
"start:electron": "electron .",
"prod": "NODE_ENV=production node server",
"test": "jest",
"watch:test": "npm t -- --watch",
"check-coverage": "npm t -- --coverage",
"validate": "npm-run-all --parallel lint --serial check-coverage",
"validate-webpack": "npm-run-all --parallel validate-webpack:*",
"validate-webpack:dev": "webpack-validator webpack.config.js --env.dev",
"validate-webpack:prod": "webpack-validator webpack.config.js --env.prod",
"lint": "eslint ./src",
"setup": "npm install && npm run validate",
"deploy": "npm run build && firebase deploy",
"deploy:github": "npm run build && gh-pages -d dist"
}
}