-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"scripts": {
"build:src:dev": "webpack --config webpack.dev.js",
"build:src:prod": "webpack --config webpack.prod.js",
"build:src:size": "webpack --config webpack.size.js",
"test:build:src": "tsc --project test",
"test:build": "npm run test:clean && npm run test:build:src",
"test:serve": "npm run test:build && node ./test_lib/server.js",
"test:clean": "rimraf test_lib",
"test:server": "npm-run-all test:clean --parallel test:watch:build test:watch:server",
"test:watch:server": "nodemon './test_lib/server.js' --watch './test_lib'"
},
"dependencies": {
"@nteract/data-explorer": "^7.1.5",
"react": "^16.3.2",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@types/node": "^10.12.21",
"@types/optimist": "0.0.29",
"css-loader": "^2.1.0",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"optimist": "^0.6.1",
"rimraf": "^2.6.1",
"source-map-loader": "^0.2.3",
"styled-components": "^4.1.3",
"style-loader": "^0.23.1",
"ts-loader": "^5.3.2",
"tslint": "^5.8.0",
"typescript": "~2.9.2",
"webpack": "^4.28.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.2.0",
"webpack-merge": "^4.2.1"
}
}