-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.8 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
{
"name": "experiments",
"version": "0.0.0",
"main": "src/index.js",
"repository": "git@github.com:neptunjs/experiments.git",
"author": "Daniel Kostro <kostro.d@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-preset-es2017": "^6.22.0",
"babel-preset-react": "^6.16.0",
"eslint": "^3.13.1",
"eslint-config-cheminfo": "^1.6.0",
"eslint-config-neptun-react": "^1.0.1",
"eslint-plugin-no-only-tests": "^1.1.0",
"eslint-plugin-react": "^6.9.0",
"gh-pages": "^0.12.0",
"npm-run-all": "^4.0.0",
"rimraf": "^2.6.1",
"style-loader": "^0.14.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"css-loader": "^0.27.3",
"lodash-es": "^4.17.4",
"nmr-predictor": "^1.0.0",
"nmr-simulation": "^1.0.0",
"openchemlib": "^5.1.2",
"openchemlib-extended": "^2.1.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-jsgraph": "^0.1.2",
"react-mf": "^0.0.1",
"react-ocl": "^0.1.0",
"react-parcoords": "^0.1.0",
"react-redux": "^5.0.3",
"react-table": "^5.0.0",
"redux": "^3.6.0",
"redux-form": "^6.5.0",
"redux-promise-middleware": "^4.2.0",
"redux-thunk": "^2.2.0",
"reselect": "^2.5.4"
},
"scripts": {
"eslint": "eslint src",
"start": "webpack-dev-server --inline",
"createIndex": "node scripts/createIndex.js",
"copyIndexFiles": "rsync -avm --include='index.html' -f 'hide,! */' src/ build/",
"build": "rimraf build && webpack && npm run copyIndexFiles && npm run createIndex",
"deploy": "yarn check && npm run build && gh-pages -d build"
}
}