This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
84 lines (84 loc) · 2.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "franklin",
"version": "2.4.0",
"repository": "https://github.com/TailorDev/franklin",
"author": "TailorDev SAS",
"license": "MIT",
"description": "TailorDev's DNA sequence tool",
"main": "server.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"stats": "npm run build -- --profile --json > stats.json",
"dev": "node server.js",
"test": "NODE_ENV=test mocha",
"test:watch": "npm run test -- --watch --reporter min",
"test:ci": "npm run test -- --reporter mocha-circleci-reporter",
"postinstall": "npm run build",
"start": "NODE_ENV=production node server.js",
"cov": "nyc --extension .jsx npm run test",
"prettier": "prettier --write --single-quote --trailing-comma es5 --parser flow 'app/**/*.js'"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.14.0",
"chai": "^4.1.1",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"enzyme": "^3.0.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.0.0",
"font-awesome": "^4.6.3",
"foundation-sites": "^6.2.1",
"html-webpack-plugin": "^2.29.0",
"immutable": "^3.7.6",
"jsdom": "^11.2.0",
"lodash.debounce": "^4.0.6",
"mocha": "^5.0.2",
"mocha-circleci-reporter": "0.0.2",
"node-sass": "^4.5.3",
"nyc": "^11.0.0",
"prettier": "^1.5.2",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-color": "^2.2.7",
"react-dom": "^15.2.0",
"react-dropzone": "^3.6.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-hotkeys": "^0.10.0",
"react-modal": "^1.3.0",
"react-redux": "^5.0.3",
"react-tabs": "^0.8.0",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-mock-store": "^1.2.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^6.0.6",
"sinon": "^4.0.0",
"style-loader": "^0.19.0",
"url-loader": "^0.6.1",
"webpack": "^3.2.0",
"webpack-dev-server": "^2.5.1",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"compression": "^1.6.1",
"express": "^4.13.4"
},
"engines": {
"node": "^8.1"
},
"nyc": {
"exclude": [
"node_modules",
"**/*-test.js",
"**/__tests__/*.js",
"app/utils/ntseq.js"
]
}
}