-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.2 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.2 KB
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
{
"name": "client.work.nation",
"description": "Work.nation client app",
"author": "CoMakery (https://github.com/CoMakery)",
"private": false,
"version": "0.0.0",
"scripts": {
"build": "node scripts/build.js",
"check-clean": "if [[ $(git status --porcelain) ]]; then echo '*** Please stash or commit changes first ***\n' && exit 1; fi ",
"check-yarn": "yarn check",
"check-yarn:ci": "git checkout yarn.lock && yarn check",
"ci": "yarn lint:ci && yarn check-yarn:ci && yarn build",
"dev": "yarn start",
"lint": "yarn lint:ci --fix",
"lint:ci": "eslint --ignore-pattern '!.eslintrc.js' .eslintrc.js src",
"postinstall": "npm rebuild node-sass",
"pre-push": "yarn lint && yarn check-clean && yarn check-yarn",
"shipit": "yarn pre-push && git push --tags origin head",
"start": "node scripts/start.js",
"test": "node scripts/test.js --env=jsdom",
"watch": "webpack --watch --progress --color"
},
"dependencies": {
"axios": "^0.16.2",
"bluebird": "^3.5.0",
"debug": "^3.0.1",
"foundation-sites": "^6.3.1",
"ipfs-mini": "^1.1.2",
"is-blank": "^2.1.0",
"is-present": "^1.0.0",
"json-stable-stringify": "^1.0.1",
"lightsaber": "^0.6.10",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"raven-js": "^3.17.0",
"react": "^15.6.1",
"react-autosuggest": "^9.3.2",
"react-dom": "^15.6.1",
"react-meta-tags": "^0.1.3",
"react-router-dom": "^4.2.2",
"uport-connect": "^0.7.0"
},
"devDependencies": {
"autoprefixer": "^7.1.3",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.1",
"babel-loader": "< 7",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^3.0.2",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"case-sensitive-paths-webpack-plugin": "^2.1.1",
"chalk": "^2.1.0",
"connect-history-api-fallback": "^1.3.0",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"detect-port": "^1.2.1",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-comakery": "^0.0.4",
"eslint-config-react-app": "^0.6.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.2",
"fs-extra": "^4.0.1",
"html-webpack-plugin": "^2.30.1",
"http-proxy-middleware": "^0.17.4",
"json-loader": "^0.5.7",
"node-sass": "^4.0.0",
"object-assign": "^4.1.1",
"postcss-loader": "^1.3.3",
"promise": "^8.0.1",
"react-dev-utils": "^0.5.2",
"sass-loader": "https://github.com/webpack-contrib/sass-loader.git#archive/webpack-1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-manifest-plugin": "^1.1.0",
"whatwg-fetch": "^2.0.3"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"plugins": [
"transform-export-extensions"
]
},
"devEngines": {
"node": ">=6"
},
"license": "Apache-2.0"
}