-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
{
"name": "webIdManager",
"version": "1.0.0",
"productName": "webIdManager",
"identifier": "net.maidsafe.web-id-manager",
"vendor": "MaidSafe.net Ltd",
"author": {
"name": "Maidsafe.net Ltd",
"email": "[email protected]",
"url": "https://github.com/maidsafe"
},
"description": "Manage RDF data on the SAFE Network",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"test": "cross-env NODE_ENV=test jest --notify",
"build": "rimraf dist && NODE_ENV=production yarn parcel build public/index.html",
"start": "cross-env NODE_ENV=development parcel public/index.html",
"lint": "eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint-fix": "yarn run lint -- --fix",
"prepush": "yarn test"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"add": "2.0.6",
"antd": "3.10.9",
"cross-env": "5.2.0",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"prop-types": "15.6.2",
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"react-dom": "16.6.3",
"react-redux": "5.1.1",
"react-router-dom": "4.3.1",
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0",
"redux-actions": "2.6.4",
"redux-promise": "0.6.0",
"redux-thunk": "2.3.0",
"schema.org": "3.1.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "10.0.1",
"babel-plugin-import": "1.11.0",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-formatter-pretty": "2.0.0",
"eslint-plugin-compat": "2.6.3",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "22.1.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"flow": "0.2.3",
"flow-bin": "0.87.0",
"jest": "23.6.0",
"jest-tobetype": "1.2.0",
"less": "3.9",
"less-vars-to-js": "1.3.0",
"parcel-bundler": "1.10.3",
"postcss-modules": "1.4.1",
"raf": "3.4.1",
"rimraf": "2.6.2"
}
}