forked from cpfair/tapiriik
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.24 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
{
"name": "exercisync",
"version": "1.0.0",
"description": "exercisync is an Apache 2.0 Licensed open-source project.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js --mode production",
"watch": "webpack --config webpack.config.js --watch --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Antash/exercisync.git"
},
"author": "Anton Ashmarin",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Antash/exercisync/issues"
},
"homepage": "https://github.com/Antash/exercisync#readme",
"babel": {
"presets": [
"env",
"react",
"stage-2"
]
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.1.2",
"style-loader": "^0.21.0",
"webpack": "^4.7.0",
"webpack-bundle-tracker": "^0.3.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"react-select": "^1.2.1"
}
}