This repository was archived by the owner on Oct 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.41 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
{
"name": "atlasparcel",
"version": "1.0.0",
"description": "Start your project with Atlaskit and Parcel.",
"scripts": {
"start": "parcel src/index.html",
"build": "parcel build src/index.html --public-url ./",
"lint": "./node_modules/.bin/standard",
"lint-fix": "./node_modules/.bin/standard --fix"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"dist/*"
]
},
"keywords": [],
"author": "cutemachine",
"license": "ISC",
"dependencies": {
"@atlaskit/avatar": "latest",
"@atlaskit/button": "latest",
"@atlaskit/css-reset": "latest",
"@atlaskit/dropdown-menu": "latest",
"@atlaskit/flag": "latest",
"@atlaskit/icon": "latest",
"@atlaskit/inline-edit": "latest",
"@atlaskit/modal-dialog": "latest",
"@atlaskit/navigation": "latest",
"@atlaskit/page": "latest",
"@atlaskit/theme": "latest",
"babel-runtime": "^6.26.0",
"history": "^4.7.2",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
"parcel-bundler": "latest",
"standard": "^11.0.1"
}
}